mirror of
https://github.com/QuasarApp/QuasarAppCoin.git
synced 2025-05-10 16:39:37 +00:00
24 lines
578 B
C++
24 lines
578 B
C++
// Copyright (c) 2015-2018 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <zmq/zmqabstractnotifier.h>
|
|
#include <util.h>
|
|
|
|
const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM;
|
|
|
|
CZMQAbstractNotifier::~CZMQAbstractNotifier()
|
|
{
|
|
assert(!psocket);
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
|
|
{
|
|
return true;
|
|
}
|