mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
trie: fix typos (#1080)
This commit is contained in:
parent
5e8a096844
commit
bebc87e2f0
2 changed files with 2 additions and 2 deletions
|
|
@ -274,7 +274,7 @@ func (it *nodeIterator) seek(prefix []byte) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// init initializes the the iterator.
|
// init initializes the iterator.
|
||||||
func (it *nodeIterator) init() (*nodeIteratorState, error) {
|
func (it *nodeIterator) init() (*nodeIteratorState, error) {
|
||||||
root := it.trie.Hash()
|
root := it.trie.Hash()
|
||||||
state := &nodeIteratorState{node: it.trie.root, index: -1}
|
state := &nodeIteratorState{node: it.trie.root, index: -1}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue