core: remove redundant return statement

This commit is contained in:
wit 2025-11-03 09:55:15 +08:00
parent 447b5f7e19
commit 174de9a3b7

View file

@ -118,5 +118,4 @@ func (p *statePrefetcher) Prefetch(block *types.Block, statedb *state.StateDB, c
blockPrefetchTxsValidMeter.Mark(int64(len(block.Transactions())) - fails.Load())
blockPrefetchTxsInvalidMeter.Mark(fails.Load())
return
}