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