1 // Copyright (c) 2015-2019 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 const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM;
8 
~CZMQAbstractNotifier()9 CZMQAbstractNotifier::~CZMQAbstractNotifier()
10 {
11     assert(!psocket);
12 }
13 
NotifyBlock(const CBlockIndex *)14 bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
15 {
16     return true;
17 }
18 
NotifyTransaction(const CTransaction &)19 bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
20 {
21     return true;
22 }
23