From d98c45f70f5c9e414193ff4f79fbfc04a3d7751f Mon Sep 17 00:00:00 2001
From: Wuxiang <wuxiangzhou2010@gmail.com>
Date: Fri, 19 Oct 2018 21:33:27 +0800
Subject: [PATCH] core: fix a typo (#17941)

---
 core/rawdb/accessors_chain.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
-- 
GitLab