core/state/snapshot: fix typo (#408)

strorage -> storage
This commit is contained in:
Ikko Ashimine 2021-09-06 12:22:21 +09:00 committed by GitHub
parent 1540ad932d
commit bca9678547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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()
}