Bitcoin Core 31.99.0
P2P Digital Currency
zmqabstractnotifier.cpp
Go to the documentation of this file.
1// Copyright (c) 2015-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
6
7#include <cassert>
8
10{
12}
13
15{
16 return true;
17}
18
20{
21 return true;
22}
23
25{
26 return true;
27}
28
30{
31 return true;
32}
33
34bool CZMQAbstractNotifier::NotifyTransactionAcceptance(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
35{
36 return true;
37}
38
39bool CZMQAbstractNotifier::NotifyTransactionRemoval(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
40{
41 return true;
42}
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:94
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.h:281
virtual bool NotifyBlockConnect(const CBlockIndex *pindex)
virtual bool NotifyTransactionRemoval(const CTransaction &transaction, uint64_t mempool_sequence)
virtual bool NotifyBlock(const CBlockIndex *pindex)
virtual bool NotifyTransaction(const CTransaction &transaction)
virtual bool NotifyBlockDisconnect(const CBlockIndex *pindex)
virtual bool NotifyTransactionAcceptance(const CTransaction &transaction, uint64_t mempool_sequence)
assert(!tx.IsCoinBase())