| 712 | return !write || gArgs.WriteSettingsFile(); |
| 713 | } |
| 714 | void requestMempoolTransactions(Notifications& notifications) override |
| 715 | { |
| 716 | if (!m_node.mempool) return; |
| 717 | LOCK2(::cs_main, m_node.mempool->cs); |
| 718 | for (const CTxMemPoolEntry& entry : m_node.mempool->mapTx) { |
| 719 | notifications.transactionAddedToMempool(entry.GetSharedTx(), 0 /* mempool_sequence */); |
| 720 | } |
| 721 | } |
| 722 | // ELEMENTS |
| 723 | MempoolAcceptResult testPeginClaimAcceptance(const CTransactionRef tx) override { |
| 724 | LOCK(::cs_main); |
no test coverage detected