aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_blockchain.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-05-05 10:10:38 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-08-26 11:08:24 +0200
commitfaf7e485e901d6c72db5d969b526fa148060a003 (patch)
tree25696db90f366bf96b52b7137677cfd36916bf4f /test/functional/rpc_blockchain.py
parent718d9f2f77270303b2f95dc275cbf416dfd4567b (diff)
downloadbitcoin-faf7e485e901d6c72db5d969b526fa148060a003.tar.xz
Set regtest.BIP65Height = 111 to speed up tests
Diffstat (limited to 'test/functional/rpc_blockchain.py')
-rwxr-xr-xtest/functional/rpc_blockchain.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py
index 1e73dcf5cd..2ee5c7ee0a 100755
--- a/test/functional/rpc_blockchain.py
+++ b/test/functional/rpc_blockchain.py
@@ -27,6 +27,7 @@ import subprocess
from test_framework.address import ADDRESS_BCRT1_P2WSH_OP_TRUE
from test_framework.blocktools import (
+ CLTV_HEIGHT,
DERSIG_HEIGHT,
create_block,
create_coinbase,
@@ -143,7 +144,7 @@ class BlockchainTest(BitcoinTestFramework):
assert_equal(res['softforks'], {
'bip34': {'type': 'buried', 'active': True, 'height': 2},
'bip66': {'type': 'buried', 'active': True, 'height': DERSIG_HEIGHT},
- 'bip65': {'type': 'buried', 'active': False, 'height': 1351},
+ 'bip65': {'type': 'buried', 'active': True, 'height': CLTV_HEIGHT},
'csv': {'type': 'buried', 'active': False, 'height': 432},
'segwit': {'type': 'buried', 'active': True, 'height': 0},
'testdummy': {