| 7 | |
| 8 | #[derive(Debug)] |
| 9 | pub(crate) struct TransactionStorage { |
| 10 | pub(crate) mempool: VecDeque<Transaction>, |
| 11 | pub(crate) receipts: DashMap<H256, TransactionReceipt>, |
| 12 | } |
| 13 | |
| 14 | impl TransactionStorage { |
| 15 | pub(crate) fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected