aboutsummaryrefslogtreecommitdiffstats
path: root/core/rawdb/accessors_chain.go
diff options
context:
space:
mode:
authorWuxiang <wuxiangzhou2010@gmail.com>2018-10-19 21:33:27 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-10-19 21:33:27 +0800
commitd98c45f70f5c9e414193ff4f79fbfc04a3d7751f (patch)
tree124d05d701a4fe6ff0b8988a3d65bb9eb4087aaa /core/rawdb/accessors_chain.go
parentaeb733623e79d9b8f03036ec1a4c0717185b527d (diff)
downloadgo-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.gz
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.bz2
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.lz
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.xz
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.zst
go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.zip
core: fix a typo (#17941)
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)