| 47 | } |
| 48 | |
| 49 | TransactionQueue::~TransactionQueue() |
| 50 | { |
| 51 | DEV_GUARDED(x_queue) |
| 52 | m_aborting = true; |
| 53 | m_queueReady.notify_all(); |
| 54 | for (auto& i: m_verifiers) |
| 55 | i.join(); |
| 56 | } |
| 57 | |
| 58 | ImportResult TransactionQueue::import(bytesConstRef _transactionRLP, IfDropped _ik) |
| 59 | { |
nothing calls this directly
no test coverage detected