mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 14:37:42 -03:00
fa0074e2d8
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
44 lines
1 KiB
C++
44 lines
1 KiB
C++
// Copyright (c) 2015-2020 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 <cassert>
|
|
|
|
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;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyBlockConnect(const CBlockIndex * /*CBlockIndex*/)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyBlockDisconnect(const CBlockIndex * /*CBlockIndex*/)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransactionAcceptance(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransactionRemoval(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
|
|
{
|
|
return true;
|
|
}
|