aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-07-01 19:58:16 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-07-01 20:04:07 +0200
commitfa11fecf0dac44846a08e1b325547641f2eca957 (patch)
tree031d39fbdfced3bdb0558fcf7704b23949ceba8a /src/rpc
parentddc6979b8baab048bbf0c5c2dd23345a8eb5c60e (diff)
downloadbitcoin-fa11fecf0dac44846a08e1b325547641f2eca957.tar.xz
doc: Move buried deployment doc to the enum that enumerates them
This is more visible than a comment hidden in an RPC helper function.
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/blockchain.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp
index b630458f23..e08dad2eb0 100644
--- a/src/rpc/blockchain.cpp
+++ b/src/rpc/blockchain.cpp
@@ -1350,8 +1350,6 @@ static RPCHelpMan verifychain()
static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Consensus::Params& params, Consensus::BuriedDeployment dep)
{
// For buried deployments.
- // A buried deployment is one where the height of the activation has been hardcoded into
- // the client implementation long after the consensus change has activated. See BIP 90.
// Buried deployments with activation height value of
// std::numeric_limits<int>::max() are disabled and thus hidden.
if (!DeploymentEnabled(params, dep)) return;