diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-11-30 16:03:55 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-11-30 17:19:49 +0100 |
commit | fa551b3bdd380bcaa8fa929b378b3b6c81a6f65c (patch) | |
tree | c273f4d3f26d2bc918d1d2d9c733e908cc6dd47d /test/functional/test_framework | |
parent | fa815f8473c56df66302340c5961d18226a60e6f (diff) |
Remove GetAdjustedTime from init.cpp
Diffstat (limited to 'test/functional/test_framework')
-rw-r--r-- | test/functional/test_framework/blocktools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/test_framework/blocktools.py b/test/functional/test_framework/blocktools.py index eaa193e357..caa9b86969 100644 --- a/test/functional/test_framework/blocktools.py +++ b/test/functional/test_framework/blocktools.py @@ -50,6 +50,8 @@ MAX_BLOCK_SIGOPS_WEIGHT = MAX_BLOCK_SIGOPS * WITNESS_SCALE_FACTOR # Genesis block time (regtest) TIME_GENESIS_BLOCK = 1296688602 +MAX_FUTURE_BLOCK_TIME = 2 * 60 * 60 + # Coinbase transaction outputs can only be spent after this number of new blocks (network rule) COINBASE_MATURITY = 100 |