Skip to content

Commit 3c75c64

Browse files
authored
core: fix typo (#29438)
1 parent c3465cb commit 3c75c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/block_validator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (v *BlockValidator) ValidateState(block *types.Block, statedb *state.StateD
132132
if rbloom != header.Bloom {
133133
return fmt.Errorf("invalid bloom (remote: %x local: %x)", header.Bloom, rbloom)
134134
}
135-
// Tre receipt Trie's root (R = (Tr [[H1, R1], ... [Hn, Rn]]))
135+
// The receipt Trie's root (R = (Tr [[H1, R1], ... [Hn, Rn]]))
136136
receiptSha := types.DeriveSha(receipts, trie.NewStackTrie(nil))
137137
if receiptSha != header.ReceiptHash {
138138
return fmt.Errorf("invalid receipt root hash (remote: %x local: %x)", header.ReceiptHash, receiptSha)

0 commit comments

Comments
 (0)