From 08959bbc70ade02109c819fdee72be1ed9310726 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Fri, 26 May 2017 13:40:47 +0300 Subject: cmd, core, eth: configurable txpool parameters --- core/tx_list_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/tx_list_test.go') diff --git a/core/tx_list_test.go b/core/tx_list_test.go index 92b211937..b4f0b5228 100644 --- a/core/tx_list_test.go +++ b/core/tx_list_test.go @@ -38,7 +38,7 @@ func TestStrictTxListAdd(t *testing.T) { // Insert the transactions in a random order list := newTxList(true) for _, v := range rand.Perm(len(txs)) { - list.Add(txs[v]) + list.Add(txs[v], DefaultTxPoolConfig.PriceBump) } // Verify internal state if len(list.txs.items) != len(txs) { -- cgit