]> Git Repo - VerusCoin.git/blob - src/amqp/amqpabstractnotifier.cpp
Merge branch 'dev' of https://github.com/miketout/VerusCoin into dev
[VerusCoin.git] / src / amqp / amqpabstractnotifier.cpp
1 // Copyright (c) 2017 The Zcash developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or https://www.opensource.org/licenses/mit-license.php .
4
5 #include "amqpabstractnotifier.h"
6 #include "util.h"
7
8
9 AMQPAbstractNotifier::~AMQPAbstractNotifier()
10 {
11 }
12
13 bool AMQPAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
14 {
15     return true;
16 }
17
18 bool AMQPAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
19 {
20     return true;
21 }
This page took 0.028274 seconds and 4 git commands to generate.