Skip to content

Commit ef26f97

Browse files
committed
fix
1 parent d2f04dd commit ef26f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/state/pruner/pruner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ func dumpRawTrieDescendants(db ethdb.Database, root common.Hash, output *stateBl
442442
resultsPerAccount <- err
443443
}()
444444
var startIt trie.NodeIterator
445-
startIt, err = storageTr.NodeIterator(big.NewInt((i - 1) << 3).Bytes())
445+
startIt, err = storageTr.NodeIterator(big.NewInt((iteration - 1) << 3).Bytes())
446446
if err != nil {
447447
return
448448
}

0 commit comments

Comments
 (0)