Add override keywork to CDSNotificationInterface::NotifyChainLock

This commit is contained in:
Alexander Block 2019-03-04 07:57:51 +01:00
parent e2f99f4ae1
commit 9e9081110b

View File

@ -24,7 +24,7 @@ protected:
void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& block) override;
void SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, int posInBlock) override;
void NotifyMasternodeListChanged(const CDeterministicMNList& newList) override;
void NotifyChainLock(const CBlockIndex* pindex);
void NotifyChainLock(const CBlockIndex* pindex) override;
private:
CConnman& connman;