From 0bb40ffc8243f3d6efab89892c0ff16f78820c6b Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Mon, 3 Jan 2022 00:35:48 -0800 Subject: [PATCH] fix test --- core/tx_pool.go | 2 +- core/tx_pool_test.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/tx_pool.go b/core/tx_pool.go index 3d1fde184..4cc267765 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -171,7 +171,7 @@ var DefaultTxPoolConfig = TxPoolConfig{ Rejournal: time.Hour, PriceLimit: 3e10, // 30 Gwei or Nano - PriceBump: 10, + PriceBump: 3, AccountSlots: 16, GlobalSlots: 4096, diff --git a/core/tx_pool_test.go b/core/tx_pool_test.go index d4bccecdd..ba4e3eadd 100644 --- a/core/tx_pool_test.go +++ b/core/tx_pool_test.go @@ -710,7 +710,7 @@ func TestTransactionDropping(t *testing.T) { defer pool.Stop() account, _ := deriveSender(transaction(0, 0, 0, key)) - pool.currentState.AddBalance(account, big.NewInt(100000000000000)) + pool.currentState.AddBalance(account, big.NewInt(30000000000000)) // Add some pending and some queued transactions var ( @@ -749,7 +749,7 @@ func TestTransactionDropping(t *testing.T) { t.Errorf("total transaction mismatch: have %d, want %d", pool.all.Count(), 6) } // Reduce the balance of the account, and check that invalidated transactions are dropped - pool.currentState.AddBalance(account, big.NewInt(-650000000000)) + pool.currentState.AddBalance(account, big.NewInt(-19500000000000)) pool.lockedReset(nil, nil) if _, ok := pool.pending[account].txs.items[tx0.Nonce()]; !ok { @@ -858,7 +858,7 @@ func TestTransactionPostponing(t *testing.T) { } // Reduce the balance of the account, and check that transactions are reorganised for _, addr := range accs { - pool.currentState.AddBalance(addr, big.NewInt(-1)) + pool.currentState.AddBalance(addr, big.NewInt(-30)) } pool.lockedReset(nil, nil)