| 1070 | } |
| 1071 | |
| 1072 | bool CTxMemPool::ChangeSet::CheckMemPoolPolicyLimits() |
| 1073 | { |
| 1074 | LOCK(m_pool->cs); |
| 1075 | if (!m_dependencies_processed) { |
| 1076 | ProcessDependencies(); |
| 1077 | } |
| 1078 | |
| 1079 | return !m_pool->m_txgraph->IsOversized(TxGraph::Level::TOP); |
| 1080 | } |
| 1081 | |
| 1082 | std::vector<FeePerWeight> CTxMemPool::GetFeerateDiagram() const |
| 1083 | { |