| 26 | TestSubscriber(uint256 tip) : m_expected_tip(tip) {} |
| 27 | |
| 28 | void UpdatedBlockTip(const CBlockIndex* pindexNew, const CBlockIndex* pindexFork, bool fInitialDownload) override |
| 29 | { |
| 30 | BOOST_CHECK_EQUAL(m_expected_tip, pindexNew->GetBlockHash()); |
| 31 | } |
| 32 | |
| 33 | void BlockConnected(const std::shared_ptr<const CBlock>& block, const CBlockIndex* pindex, const std::vector<CTransactionRef>& txnConflicted) override |
| 34 | { |
nothing calls this directly
no test coverage detected