diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2022-03-10 20:24:11 +0100 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2022-03-10 20:24:11 +0100 |
commit | 5ce3057c8e8f192921fd5e4bdb95bb15e3f7dbad (patch) | |
tree | dbc36a2eff99a41c643b3e8dcc43f2a9314e2895 /src/chainparams.cpp | |
parent | 93feabcb30e34bfc458742e0e8b327b404599f29 (diff) |
test: set segwit height back to 0 on regtest
This was changed in #22818 from 0 to 1. Since it changes
BLOCK_OPT_WIT of the genesis block, older versions of bitcoin
core would not read regtest directories created with newer versions
without a reindex.
Diffstat (limited to 'src/chainparams.cpp')
-rw-r--r-- | src/chainparams.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp index d3ae6f4cb2..93510e925f 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -397,7 +397,7 @@ public: consensus.BIP65Height = 1; // Always active unless overridden consensus.BIP66Height = 1; // Always active unless overridden consensus.CSVHeight = 1; // Always active unless overridden - consensus.SegwitHeight = 1; // Always active unless overridden + consensus.SegwitHeight = 0; // Always active unless overridden consensus.MinBIP9WarningHeight = 0; consensus.powLimit = uint256S("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); consensus.nPowTargetTimespan = 14 * 24 * 60 * 60; // two weeks |