diff --git a/core/tx_pool_test.go b/core/tx_pool_test.go index ea4168f9f3be..6f4a8c4b5108 100644 --- a/core/tx_pool_test.go +++ b/core/tx_pool_test.go @@ -2070,6 +2070,6 @@ func BenchmarkPoolMultiAccountBatchInsert(b *testing.B) { // Benchmark importing the transactions into the queue b.ResetTimer() for _, tx := range batches { - pool.AddRemotes([]*types.Transaction{tx}) + pool.AddRemotesSync([]*types.Transaction{tx}) } }