diff options
| author | Matt Corallo <[email protected]> | 2017-02-08 14:00:14 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-04-07 11:53:43 +0200 |
| commit | acad82f375615d8d238c7d819a48acd7900329f2 (patch) | |
| tree | 705a6b7b1c51216fb29d60891762dc99a416be1a /src/zmq | |
| parent | Hold cs_wallet for whole block [dis]connection processing (diff) | |
| download | discoin-acad82f375615d8d238c7d819a48acd7900329f2.tar.xz discoin-acad82f375615d8d238c7d819a48acd7900329f2.zip | |
Add override to functions using CValidationInterface methods
Diffstat (limited to 'src/zmq')
| -rw-r--r-- | src/zmq/zmqnotificationinterface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zmq/zmqnotificationinterface.h b/src/zmq/zmqnotificationinterface.h index 7d765d409..eec6f7bc6 100644 --- a/src/zmq/zmqnotificationinterface.h +++ b/src/zmq/zmqnotificationinterface.h @@ -25,10 +25,10 @@ protected: void Shutdown(); // CValidationInterface - void TransactionAddedToMempool(const CTransactionRef& tx); - void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected, const std::vector<CTransactionRef>& vtxConflicted); - void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock); - void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload); + void TransactionAddedToMempool(const CTransactionRef& tx) override; + void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected, const std::vector<CTransactionRef>& vtxConflicted) override; + void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock) override; + void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override; private: CZMQNotificationInterface(); |