diff options
author | Anthony Towns <aj@erisian.com.au> | 2022-01-28 17:13:45 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-01-28 18:07:08 +1000 |
commit | 5179656ef83a563133e32893f4acfd61d1aebdcb (patch) | |
tree | 0a661b6eb3afe73b64956e1a3471214e6a1403d3 | |
parent | 32f04e6da9845c218f9bbd8b8329f35ed3678a49 (diff) |
trivial: comment tweaks
-rw-r--r-- | src/rpc/blockchain.cpp | 2 | ||||
-rw-r--r-- | src/versionbits.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index cd2c5e0b46..f68a3d2277 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1517,7 +1517,7 @@ static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& } namespace { -/* TODO: when -dprecatedrpc=softforks is removed, drop these */ +/* TODO: when -deprecatedrpc=softforks is removed, drop these */ UniValue DeploymentInfo(const CBlockIndex* tip, const Consensus::Params& consensusParams); extern const std::vector<RPCResult> RPCHelpForDeployment; } diff --git a/src/versionbits.cpp b/src/versionbits.cpp index 36815fba17..7a297c2bbb 100644 --- a/src/versionbits.cpp +++ b/src/versionbits.cpp @@ -107,7 +107,7 @@ BIP9Stats AbstractThresholdConditionChecker::GetStateStatisticsFor(const CBlockI if (pindex == nullptr) return stats; - // Find beginning of period + // Find how many blocks are in the current period int blocks_in_period = 1 + (pindex->nHeight % stats.period); // Reset signalling_blocks |