diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-07-01 19:58:16 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-07-01 20:04:07 +0200 |
commit | fa11fecf0dac44846a08e1b325547641f2eca957 (patch) | |
tree | 031d39fbdfced3bdb0558fcf7704b23949ceba8a /src/rpc | |
parent | ddc6979b8baab048bbf0c5c2dd23345a8eb5c60e (diff) |
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.cpp | 2 |
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; |