2019-12-30 22:39:22 +13:00
|
|
|
// Copyright (c) 2015-2019 The Bitcoin Core developers
|
2014-11-18 12:06:32 -05:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <zmq/zmqabstractnotifier.h>
|
2014-11-18 12:06:32 -05:00
|
|
|
|
2018-08-24 20:42:03 -04:00
|
|
|
const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM;
|
2014-11-18 12:06:32 -05:00
|
|
|
|
|
|
|
CZMQAbstractNotifier::~CZMQAbstractNotifier()
|
|
|
|
{
|
|
|
|
assert(!psocket);
|
|
|
|
}
|
|
|
|
|
2015-09-16 16:42:23 +02:00
|
|
|
bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
|
2014-11-18 12:06:32 -05:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|