Merge #11726: Cleanups + nit fixes for walletdir PR
[bitcoinplatinum.git] / src / zmq / zmqabstractnotifier.cpp
blobce5c753eb4ed97ecd8f53fc1d3649ba8c532e7f2
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 <zmq/zmqabstractnotifier.h>
6 #include <util.h>
9 CZMQAbstractNotifier::~CZMQAbstractNotifier()
11 assert(!psocket);
14 bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
16 return true;
19 bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
21 return true;