diff options
author | Alex Morcos <morcos@chaincode.com> | 2015-11-02 16:41:55 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2015-11-02 20:11:55 -0500 |
commit | 33c90cf197223fb95f858db80d090d570d70498a (patch) | |
tree | 07c236112b37b67a337aa8b9b10a4bf9fbe0e815 /src/consensus/params.h | |
parent | 06d81ad516f1d136da9f03ca2ae823211c0f6988 (diff) |
Make skipping BIP30 check chain agnostic
Diffstat (limited to 'src/consensus/params.h')
-rw-r--r-- | src/consensus/params.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/consensus/params.h b/src/consensus/params.h index efbbbed352..5ebc48a8df 100644 --- a/src/consensus/params.h +++ b/src/consensus/params.h @@ -19,6 +19,9 @@ struct Params { int nMajorityEnforceBlockUpgrade; int nMajorityRejectBlockOutdated; int nMajorityWindow; + /** Block height and hash at which BIP34 becomes active */ + int BIP34Height; + uint256 BIP34Hash; /** Proof of work parameters */ uint256 powLimit; bool fPowAllowMinDifficultyBlocks; |