MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / TransactionAddedToMempool

Method TransactionAddedToMempool

src/node/interfaces.cpp:472–475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

470 : m_notifications(std::move(notifications)) {}
471 virtual ~NotificationsProxy() = default;
472 void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t mempool_sequence) override
473 {
474 m_notifications->transactionAddedToMempool(tx.info.m_tx);
475 }
476 void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t mempool_sequence) override
477 {
478 m_notifications->transactionRemovedFromMempool(tx, reason);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected