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"