From ebaa8af8a0458590c580067b33ddade58d60cc9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nina=20/=20=E1=83=9C=E1=83=98=E1=83=9C=E1=83=90?= Date: Fri, 21 Jun 2024 11:09:56 +0200 Subject: [PATCH] Update store/store.go Co-authored-by: Rootul P --- store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/store.go b/store/store.go index df06c6421..90453a6d2 100644 --- a/store/store.go +++ b/store/store.go @@ -450,7 +450,7 @@ func (bs *BlockStore) SaveSeenCommit(height int64, seenCommit *types.Commit) err return bs.db.Set(calcSeenCommitKey(height), seenCommitBytes) } -// SaveTxInfo indexes the txs from the block with the given response codes during execution. +// SaveTxInfo indexes the txs from the block with the given response codes from execution. func (bs *BlockStore) SaveTxInfo(block *types.Block, txResponseCodes []uint32) error { if len(txResponseCodes) != len(block.Txs) { return fmt.Errorf("txResponseCodes length mismatch with block txs length")