Tests that if the transaction count belonging to multiple accounts go above some threshold, the higher transactions are dropped to prevent DOS attacks. This logic should not hold for local transactions, unless the local tracking mechanism is disabled.
(t *testing.T)
| 761 | // This logic should not hold for local transactions, unless the local tracking |
| 762 | // mechanism is disabled. |
| 763 | func TestTransactionQueueGlobalLimiting(t *testing.T) { |
| 764 | testTransactionQueueGlobalLimiting(t, false) |
| 765 | } |
| 766 | func TestTransactionQueueGlobalLimitingNoLocals(t *testing.T) { |
| 767 | testTransactionQueueGlobalLimiting(t, true) |
| 768 | } |
nothing calls this directly
no test coverage detected