test: add blocks_key_path

Adds a convenience function to TestNode
to provide the path to the blocks xor key.
Updates util and feature_blocksxor to use it.
This commit is contained in:
tdb3
2024-08-20 19:28:14 -04:00
parent d79ea809d2
commit c8176f758b
3 changed files with 6 additions and 2 deletions

View File

@@ -465,6 +465,10 @@ class TestNode():
def blocks_path(self) -> Path:
return self.chain_path / "blocks"
@property
def blocks_key_path(self) -> Path:
return self.blocks_path / "xor.dat"
@property
def wallets_path(self) -> Path:
return self.chain_path / "wallets"