test: Add blocks_path property to TestNode

This commit is contained in:
MarcoFalke
2023-07-12 14:36:37 +02:00
parent faba4fc325
commit fa060c15fb

View File

@ -420,6 +420,10 @@ class TestNode():
def debug_log_path(self) -> Path: def debug_log_path(self) -> Path:
return self.chain_path / 'debug.log' return self.chain_path / 'debug.log'
@property
def blocks_path(self) -> Path:
return self.chain_path / "blocks"
@property @property
def wallets_path(self) -> Path: def wallets_path(self) -> Path:
return self.chain_path / "wallets" return self.chain_path / "wallets"