diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-09-16 16:42:23 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-09-16 16:51:21 +0200 |
commit | d76a8acb9b7bcabf43e3e05168a36911f187818d (patch) | |
tree | 2322acc9cd1448c524e7507a517deca6da7cf43c /src/zmq/zmqabstractnotifier.cpp | |
parent | 0143a1f228c3447ae2e025c697b0ad53a0d8d306 (diff) |
use CBlockIndex* insted of uint256 for UpdatedBlockTip signal
- removes mapBlockIndex find operation
- theoretically allows removing the cs_main lock during zqm notification while introducing a new file position lock
Diffstat (limited to 'src/zmq/zmqabstractnotifier.cpp')
-rw-r--r-- | src/zmq/zmqabstractnotifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zmq/zmqabstractnotifier.cpp b/src/zmq/zmqabstractnotifier.cpp index 744ec59234..9f5cb3ba67 100644 --- a/src/zmq/zmqabstractnotifier.cpp +++ b/src/zmq/zmqabstractnotifier.cpp @@ -11,7 +11,7 @@ CZMQAbstractNotifier::~CZMQAbstractNotifier() assert(!psocket); } -bool CZMQAbstractNotifier::NotifyBlock(const uint256 &/*hash*/) +bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/) { return true; } |