aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_getblockstats.py
diff options
context:
space:
mode:
authorKiminuo <kiminuo@protonmail.com>2021-05-17 16:38:19 +0200
committerKiminuo <kiminuo@protonmail.com>2021-05-31 07:32:28 +0200
commitbfa9309ad606102f24c9bd3c33dfe78949f09418 (patch)
tree6c21faf3163fe922a6e7724f7837414fcadefc3e /test/functional/rpc_getblockstats.py
parent525448df9dc2ab6b7e960ff138956ae3e2efdf60 (diff)
downloadbitcoin-bfa9309ad606102f24c9bd3c33dfe78949f09418.tar.xz
Use COINBASE_MATURITY constant in functional tests.
Diffstat (limited to 'test/functional/rpc_getblockstats.py')
-rwxr-xr-xtest/functional/rpc_getblockstats.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/rpc_getblockstats.py b/test/functional/rpc_getblockstats.py
index 57794ae973..4af518c870 100755
--- a/test/functional/rpc_getblockstats.py
+++ b/test/functional/rpc_getblockstats.py
@@ -6,6 +6,8 @@
#
# Test getblockstats rpc call
#
+
+from test_framework.blocktools import COINBASE_MATURITY
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
@@ -41,7 +43,7 @@ class GetblockstatsTest(BitcoinTestFramework):
def generate_test_data(self, filename):
mocktime = 1525107225
self.nodes[0].setmocktime(mocktime)
- self.nodes[0].generate(101)
+ self.nodes[0].generate(COINBASE_MATURITY + 1)
address = self.nodes[0].get_deterministic_priv_key().address
self.nodes[0].sendtoaddress(address=address, amount=10, subtractfeefromamount=True)