소스 검색

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

strorage -> storage
Ikko Ashimine 4 년 전
부모
커밋
bca9678547
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/state/snapshot/iterator.go

+ 1 - 1
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()
 }