| 1029 | } |
| 1030 | |
| 1031 | void addTransaction(const CTransactionRef& tx) |
| 1032 | { |
| 1033 | queuedTx.insert(tx); |
| 1034 | cachedInnerUsage += RecursiveDynamicUsage(tx); |
| 1035 | } |
| 1036 | |
| 1037 | // Remove entries based on txid_index, and update memory usage. |
| 1038 | void removeForBlock(const std::vector<CTransactionRef>& vtx) |
no test coverage detected