Tests that the transaction limits are enforced the same way irrelevant whether the transactions are added one by one or in batches.
(t *testing.T)
| 958 | // Tests that the transaction limits are enforced the same way irrelevant whether |
| 959 | // the transactions are added one by one or in batches. |
| 960 | func TestTransactionQueueLimitingEquivalency(t *testing.T) { testTransactionLimitingEquivalency(t, 1) } |
| 961 | func TestTransactionPendingLimitingEquivalency(t *testing.T) { testTransactionLimitingEquivalency(t, 0) } |
| 962 | |
| 963 | func testTransactionLimitingEquivalency(t *testing.T, origin uint64) { |
nothing calls this directly
no test coverage detected