Tests that if an account remains idle for a prolonged amount of time, any non-executable transactions queued up are dropped to prevent wasting resources on shuffling them around. This logic should not hold for local transactions, unless the local tracking mechanism is disabled.
(t *testing.T)
| 851 | // This logic should not hold for local transactions, unless the local tracking |
| 852 | // mechanism is disabled. |
| 853 | func TestTransactionQueueTimeLimiting(t *testing.T) { testTransactionQueueTimeLimiting(t, false) } |
| 854 | func TestTransactionQueueTimeLimitingNoLocals(t *testing.T) { testTransactionQueueTimeLimiting(t, true) } |
| 855 | |
| 856 | func testTransactionQueueTimeLimiting(t *testing.T, nolocals bool) { |
nothing calls this directly
no test coverage detected