Branch data Line data Source code
1 : : // Copyright (c) 2015-2020 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 : :
5 : : #include <zmq/zmqabstractnotifier.h>
6 : :
7 : : #include <cassert>
8 : :
9 : : const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM;
10 : :
11 : 18 : CZMQAbstractNotifier::~CZMQAbstractNotifier()
12 : : {
13 [ - + ]: 18 : assert(!psocket);
14 : 18 : }
15 : :
16 : 43 : bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
17 : : {
18 : 43 : return true;
19 : : }
20 : :
21 : 123 : bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
22 : : {
23 : 123 : return true;
24 : : }
25 : :
26 : 72 : bool CZMQAbstractNotifier::NotifyBlockConnect(const CBlockIndex * /*CBlockIndex*/)
27 : : {
28 : 72 : return true;
29 : : }
30 : :
31 : 8 : bool CZMQAbstractNotifier::NotifyBlockDisconnect(const CBlockIndex * /*CBlockIndex*/)
32 : : {
33 : 8 : return true;
34 : : }
35 : :
36 : 14 : bool CZMQAbstractNotifier::NotifyTransactionAcceptance(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
37 : : {
38 : 14 : return true;
39 : : }
40 : :
41 : 0 : bool CZMQAbstractNotifier::NotifyTransactionRemoval(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
42 : : {
43 : 0 : return true;
44 : : }
|