diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-12 14:36:37 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-25 15:51:22 +0200 |
commit | fa060c15fb5081e66ed1ebe05dca6e8026f32c4f (patch) | |
tree | fe077b35ae156a3725d4e19b05274100f5c60c26 /test/functional/test_framework | |
parent | faba4fc3257c0e7d7bcb5146dab07ffe3193744b (diff) |
test: Add blocks_path property to TestNode
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_node.py | 4 |
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" |