(b *testing.B)
| 1813 | func BenchmarkPoolBatchInsert100(b *testing.B) { benchmarkPoolBatchInsert(b, 100) } |
| 1814 | func BenchmarkPoolBatchInsert1000(b *testing.B) { benchmarkPoolBatchInsert(b, 1000) } |
| 1815 | func BenchmarkPoolBatchInsert10000(b *testing.B) { benchmarkPoolBatchInsert(b, 10000) } |
| 1816 | |
| 1817 | func benchmarkPoolBatchInsert(b *testing.B, size int) { |
| 1818 | // Generate a batch of transactions to enqueue into the pool |
nothing calls this directly
no test coverage detected