diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-19 16:36:21 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-19 16:41:59 +0200 |
commit | 5d2c8e524e1024ff562c0f48280f26d8e4e897f7 (patch) | |
tree | 97554eb23b3839006a8eee8b7fcc9193129a2b21 /src/main.h | |
parent | 97c7f7362f9b59247753d6e8fa8022a6205f9c09 (diff) | |
parent | fc146095d20452686efe1944b143452bec394343 (diff) |
Merge #7948: RPC: augment getblockchaininfo bip9_softforks data
fc14609 RPC: augment getblockchaininfo bip9_softforks data (mruddy)
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index e91f6e46fe..3eab9b89da 100644 --- a/src/main.h +++ b/src/main.h @@ -297,7 +297,8 @@ std::string FormatStateMessage(const CValidationState &state); /** Get the BIP9 state for a given deployment at the current tip. */ ThresholdState VersionBitsTipState(const Consensus::Params& params, Consensus::DeploymentPos pos); - +/** Get the block height at which the BIP9 deployment switched into the state for the block building on the current tip. */ +int VersionBitsTipStateSinceHeight(const Consensus::Params& params, Consensus::DeploymentPos pos); /** * Count ECDSA signature operations the old-fashioned (pre-0.6) way |