aboutsummaryrefslogtreecommitdiff
path: root/src/consensus/params.h
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2021-02-13 17:21:20 +0100
committerPatrick Lodder <[email protected]>2021-02-13 17:24:55 +0100
commit0c600d7f9d832836a9389bf77918472beeb23907 (patch)
treee9fbb3dd6b74b34a58e0854fdf3c329cd2e13e0a /src/consensus/params.h
parentMerge pull request #1705 from rnicoll/block-download-timeout (diff)
downloaddiscoin-0c600d7f9d832836a9389bf77918472beeb23907.tar.xz
discoin-0c600d7f9d832836a9389bf77918472beeb23907.zip
Fixate BIP65 softfork heights
- Re-introduce Params.BIP65Height - Fixate block 1854705 for testnet - Fixate block 3464751 for mainnet - Fixate block 1351 for regtest - Stop using IsSuperMajority() in validation for BIP65 - Simplify RPC SoftForkMajorityDesc
Diffstat (limited to 'src/consensus/params.h')
-rw-r--r--src/consensus/params.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus/params.h b/src/consensus/params.h
index 250441b2e..a25ff9ac5 100644
--- a/src/consensus/params.h
+++ b/src/consensus/params.h
@@ -47,7 +47,7 @@ struct Params {
int BIP34Height;
uint256 BIP34Hash;
/** Block height at which BIP65 becomes active */
- // int BIP65Height;
+ int BIP65Height;
/** Block height at which BIP66 becomes active */
int BIP66Height;
/**