Raven Core  3.0.0
P2P Digital Currency
zmqabstractnotifier.cpp
Go to the documentation of this file.
1 // Copyright (c) 2015 The Bitcoin Core developers
2 // Copyright (c) 2017-2019 The Raven Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #include "zmqabstractnotifier.h"
7 #include "util.h"
8 
9 
11 {
12  assert(!psocket);
13 }
14 
15 bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
16 {
17  return true;
18 }
19 
21 {
22  return true;
23 }
24 
26 {
27  return true;
28 }
virtual bool NotifyBlock(const CBlockIndex *pindex)
virtual bool NotifyTransaction(const CTransaction &transaction)
virtual bool NotifyMessage(const CMessage &message)
The block chain is a tree shaped structure starting with the genesis block at the root...
Definition: chain.h:172
The basic transaction that is broadcasted on the network and contained in blocks. ...
Definition: transaction.h:270