aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-07-12 14:36:37 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-07-25 15:51:22 +0200
commitfa060c15fb5081e66ed1ebe05dca6e8026f32c4f (patch)
treefe077b35ae156a3725d4e19b05274100f5c60c26 /test/functional/test_framework
parentfaba4fc3257c0e7d7bcb5146dab07ffe3193744b (diff)
test: Add blocks_path property to TestNode
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-xtest/functional/test_framework/test_node.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index 1fcef6ce1c..c1334b2484 100755
--- a/test/functional/test_framework/test_node.py
+++ b/test/functional/test_framework/test_node.py
@@ -421,6 +421,10 @@ class TestNode():
return self.chain_path / 'debug.log'
@property
+ def blocks_path(self) -> Path:
+ return self.chain_path / "blocks"
+
+ @property
def wallets_path(self) -> Path:
return self.chain_path / "wallets"