Add ZeroMQ support. Notify blocks and transactions via ZeroMQ
[bitcoinplatinum.git] / src / zmq / zmqabstractnotifier.cpp
blob744ec59234d56cbe0ce2bc836135baa0edc9dfa5
1 // Copyright (c) 2015 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.
5 #include "zmqabstractnotifier.h"
6 #include "util.h"
9 CZMQAbstractNotifier::~CZMQAbstractNotifier()
11 assert(!psocket);
14 bool CZMQAbstractNotifier::NotifyBlock(const uint256 &/*hash*/)
16 return true;
19 bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
21 return true;