| 725 | return ::AcceptToMemoryPool(chainman().ActiveChainstate(), tx, GetTime(), false /* bypass_limits */, true /* test_accept */); |
| 726 | } |
| 727 | CBlockIndex* getTip() override { |
| 728 | LOCK(::cs_main); |
| 729 | const CChain& active = Assert(m_node.chainman)->ActiveChain(); |
| 730 | return active.Tip(); |
| 731 | } |
| 732 | bool testBlockValidity(BlockValidationState& state, const CChainParams& chainparams, const CBlock& block, CBlockIndex* pindexPrev, bool fCheckPOW, bool fCheckMerkleRoot) override { |
| 733 | LOCK(::cs_main); |
| 734 | Assert(m_node.chainman); |
no test coverage detected