()
| 13 | |
| 14 | impl TransactionStorage { |
| 15 | pub(crate) fn new() -> Self { |
| 16 | Self { |
| 17 | mempool: VecDeque::new(), |
| 18 | receipts: DashMap::new(), |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | // add to the transaction mempool |
| 23 | pub(crate) fn send_transaction(&mut self, transaction: Transaction) { |
nothing calls this directly
no outgoing calls
no test coverage detected