From fa060c15fb5081e66ed1ebe05dca6e8026f32c4f Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Wed, 12 Jul 2023 14:36:37 +0200 Subject: [PATCH] test: Add blocks_path property to TestNode --- test/functional/test_framework/test_node.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index 1fcef6ce1c8..c1334b2484a 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -420,6 +420,10 @@ class TestNode(): def debug_log_path(self) -> Path: 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"