diff options
author | Wuxiang <wuxiangzhou2010@gmail.com> | 2018-10-19 21:33:27 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-10-19 21:33:27 +0800 |
commit | d98c45f70f5c9e414193ff4f79fbfc04a3d7751f (patch) | |
tree | 124d05d701a4fe6ff0b8988a3d65bb9eb4087aaa | |
parent | aeb733623e79d9b8f03036ec1a4c0717185b527d (diff) | |
download | go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.gz go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.tar.zst go-tangerine-d98c45f70f5c9e414193ff4f79fbfc04a3d7751f.zip |
core: fix a typo (#17941)
-rw-r--r-- | core/rawdb/accessors_chain.go | 2 |
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) |