diff --git a/core/preimages.go b/core/preimages.go index 4e1d18447..ee3af8129 100644 --- a/core/preimages.go +++ b/core/preimages.go @@ -221,7 +221,7 @@ func GeneratePreimages(chain BlockChain, start, end uint64) error { // now execute block T+1 based on starting state for i := startingBlock.NumberU64() + 1; i <= end; i++ { - if i%100000 == 0 { + if i%10000 == 0 { fmt.Println("processing block", i) } block := chain.GetBlockByNumber(i)