From 5840ddaa7ef7fb41a64273360c6b5a059ebfd104 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 9 Oct 2021 13:43:36 +0900 Subject: [PATCH] core: fix typo in iterator.go strorage -> storage --- core/state/snapshot/iterator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/snapshot/iterator.go b/core/state/snapshot/iterator.go index 1d9340bbada6..c1a196c7ff85 100644 --- a/core/state/snapshot/iterator.go +++ b/core/state/snapshot/iterator.go @@ -385,7 +385,7 @@ func (it *diskStorageIterator) Hash() common.Hash { return common.BytesToHash(it.it.Key()) // The prefix will be truncated } -// Slot returns the raw strorage slot content the iterator is currently at. +// Slot returns the raw storage slot content the iterator is currently at. func (it *diskStorageIterator) Slot() []byte { return it.it.Value() }