diff options
| author | Jeff Garzik <[email protected]> | 2014-11-18 12:06:32 -0500 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2015-09-16 11:01:35 +0100 |
| commit | e6a14b64d665eb1fafd03a6bbc8d14597ce1c83c (patch) | |
| tree | bfefc581188fb56413c6d29cde625b0395faebc5 /src/zmq/zmqabstractnotifier.cpp | |
| parent | Depends: Add ZeroMQ package (diff) | |
| download | discoin-e6a14b64d665eb1fafd03a6bbc8d14597ce1c83c.tar.xz discoin-e6a14b64d665eb1fafd03a6bbc8d14597ce1c83c.zip | |
Add ZeroMQ support. Notify blocks and transactions via ZeroMQ
Continues Johnathan Corgan's work.
Publishing multipart messages
Bugfix: Add missing zmq header includes
Bugfix: Adjust build system to link ZeroMQ code for Qt binaries
Diffstat (limited to 'src/zmq/zmqabstractnotifier.cpp')
| -rw-r--r-- | src/zmq/zmqabstractnotifier.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/zmq/zmqabstractnotifier.cpp b/src/zmq/zmqabstractnotifier.cpp new file mode 100644 index 000000000..744ec5923 --- /dev/null +++ b/src/zmq/zmqabstractnotifier.cpp @@ -0,0 +1,22 @@ +// Copyright (c) 2015 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "zmqabstractnotifier.h" +#include "util.h" + + +CZMQAbstractNotifier::~CZMQAbstractNotifier() +{ + assert(!psocket); +} + +bool CZMQAbstractNotifier::NotifyBlock(const uint256 &/*hash*/) +{ + return true; +} + +bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/) +{ + return true; +} |