core: sanitize more TxPoolConfig fields (#17210)

* core: sanitize more TxPoolConfig fields

* core: fix TestTransactionPendingMinimumAllowance
This commit is contained in:
Jordan Krage
2018-12-20 07:00:58 -06:00
committed by Martin Holst Swende
parent 5f251a6448
commit 27ce4eb78b
2 changed files with 21 additions and 1 deletions

View File

@ -1095,7 +1095,7 @@ func TestTransactionPendingMinimumAllowance(t *testing.T) {
blockchain := &testBlockChain{statedb, 1000000, new(event.Feed)}
config := testTxPoolConfig
config.GlobalSlots = 0
config.GlobalSlots = 1
pool := NewTxPool(config, params.TestChainConfig, blockchain)
defer pool.Stop()