diff --git a/core/rawdb/chain_iterator.go b/core/rawdb/chain_iterator.go index cc6350f242..291c54dff7 100644 --- a/core/rawdb/chain_iterator.go +++ b/core/rawdb/chain_iterator.go @@ -397,7 +397,7 @@ func PruneTransactionIndex(db ethdb.Database, pruneBlock uint64) { } removed++ } - if count%10000 == 0 { + if count%1000000 == 0 { log.Info("Pruning tx index", "count", count, "removed", removed) } }