aboutsummaryrefslogtreecommitdiffstats
path: root/core/rawdb/accessors_chain.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/rawdb/accessors_chain.go')
-rw-r--r--core/rawdb/accessors_chain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/rawdb/accessors_chain.go b/core/rawdb/accessors_chain.go
index da5432832..6660e17de 100644
--- a/core/rawdb/accessors_chain.go
+++ b/core/rawdb/accessors_chain.go
@@ -278,7 +278,7 @@ func ReadReceipts(db DatabaseReader, hash common.Hash, number uint64) types.Rece
if len(data) == 0 {
return nil
}
- // Convert the revceipts from their storage form to their internal representation
+ // Convert the receipts from their storage form to their internal representation
storageReceipts := []*types.ReceiptForStorage{}
if err := rlp.DecodeBytes(data, &storageReceipts); err != nil {
log.Error("Invalid receipt array RLP", "hash", hash, "err", err)