core/txpool: make transaction validation reusable across packages (pools) (#27429)
* core/txpool: abstraction prep work for secondary pools (blob pool) * core/txpool: leave subpool concepts to a followup pr * les: fix tests using hard coded errors * core/txpool: use bitmaps instead of maps for tx type filtering
This commit is contained in:
@@ -119,7 +119,7 @@ func newTestBackendWithGenerator(blocks int, shanghai bool, generator func(int,
|
||||
return &testBackend{
|
||||
db: db,
|
||||
chain: chain,
|
||||
txpool: txpool.NewTxPool(txconfig, params.TestChainConfig, chain),
|
||||
txpool: txpool.New(txconfig, params.TestChainConfig, chain),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user