Use the override specifier (C++11) where we expect to be overriding the virtual funct...
[bitcoinplatinum.git] / src / zmq / zmqabstractnotifier.cpp
blob9f5cb3ba677ce5ca8b851c3c1719cb70cbf70275
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 CBlockIndex * /*CBlockIndex*/)
16 return true;
19 bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
21 return true;