Skip to content

Commit

Permalink
Reduce likelihood of exceeding AccountQueue
Browse files Browse the repository at this point in the history
Increased time between transactions sending so that accounts don't send
more than 64 txs within the block period.
  • Loading branch information
piersy committed Nov 1, 2024
1 parent 40b0de0 commit d2cc8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e_test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ func TestManyFeeCurrencyTransactions(t *testing.T) {
tx, err := accounts[nodeIndex].SendValueWithDynamicFee(ctx, accounts[nodeIndex].Address, 1, feeCurrency, baseFee.Add(baseFee, tip), tip, network[nodeIndex], 71000)
require.NoError(t, err)
txs = append(txs, tx)
time.Sleep(10 * time.Millisecond)
time.Sleep(16 * time.Millisecond)
}
}
txsChan <- txs
Expand Down

0 comments on commit d2cc8ca

Please sign in to comment.