| 271 | } |
| 272 | |
| 273 | bool CZMQPublishSequenceNotifier::NotifyBlockConnect(const CBlockIndex *pindex) |
| 274 | { |
| 275 | uint256 hash = pindex->GetBlockHash(); |
| 276 | LogPrint(BCLog::ZMQ, "zmq: Publish sequence block connect %s to %s\n", hash.GetHex(), this->address); |
| 277 | return SendSequenceMsg(*this, hash, /* Block (C)onnect */ 'C'); |
| 278 | } |
| 279 | |
| 280 | bool CZMQPublishSequenceNotifier::NotifyBlockDisconnect(const CBlockIndex *pindex) |
| 281 | { |
no test coverage detected