90adb89233
15a6a16 Implement transaction lock zmq notifications 3bc86a6 always push zmqpubhashtxlock even if tx is not from/to our wallet 568315b fix typo b6d41d2 fix data size for notification name 339be11 implement zmqpubrawtxlock 70f44f9 update zmq_sub.py with hashtxlock and rawtxlock
28 lines
625 B
C++
28 lines
625 B
C++
// Copyright (c) 2015 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 "zmqabstractnotifier.h"
|
|
#include "util.h"
|
|
|
|
|
|
CZMQAbstractNotifier::~CZMQAbstractNotifier()
|
|
{
|
|
assert(!psocket);
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CZMQAbstractNotifier::NotifyTransactionLock(const CTransaction &/*transaction*/)
|
|
{
|
|
return true;
|
|
}
|