diff options
| author | Alex Morcos <[email protected]> | 2015-11-02 16:41:55 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2015-11-02 20:11:55 -0500 |
| commit | 33c90cf197223fb95f858db80d090d570d70498a (patch) | |
| tree | 07c236112b37b67a337aa8b9b10a4bf9fbe0e815 /src/consensus/params.h | |
| parent | Skip BIP30 check after BIP34 activation (diff) | |
| download | discoin-33c90cf197223fb95f858db80d090d570d70498a.tar.xz discoin-33c90cf197223fb95f858db80d090d570d70498a.zip | |
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 efbbbed35..5ebc48a8d 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; |