diff options
| author | Patrick Lodder <[email protected]> | 2021-02-13 17:21:20 +0100 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-02-13 17:24:55 +0100 |
| commit | 0c600d7f9d832836a9389bf77918472beeb23907 (patch) | |
| tree | e9fbb3dd6b74b34a58e0854fdf3c329cd2e13e0a /src/consensus/params.h | |
| parent | Merge pull request #1705 from rnicoll/block-download-timeout (diff) | |
| download | discoin-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.h | 2 |
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; /** |