diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-11-15 10:56:16 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-11-16 08:20:33 +0100 |
commit | fa3e0da06b491b8c0fa2dbae37682a9112c9deb8 (patch) | |
tree | 3b4433c45304ee8e430858cef37655a91b729c97 /src/node/interfaces.cpp | |
parent | 15d109802ab93b0af9647858c9d8adcd8a2db84a (diff) |
policy: Treat taproot as always active
Diffstat (limited to 'src/node/interfaces.cpp')
-rw-r--r-- | src/node/interfaces.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node/interfaces.cpp b/src/node/interfaces.cpp index 9b4ba8eb97..a80209dcab 100644 --- a/src/node/interfaces.cpp +++ b/src/node/interfaces.cpp @@ -713,12 +713,6 @@ public: notifications.transactionAddedToMempool(entry.GetSharedTx(), 0 /* mempool_sequence */); } } - bool isTaprootActive() override - { - LOCK(::cs_main); - const CBlockIndex* tip = Assert(m_node.chainman)->ActiveChain().Tip(); - return DeploymentActiveAfter(tip, Params().GetConsensus(), Consensus::DEPLOYMENT_TAPROOT); - } NodeContext& m_node; }; } // namespace |