config: update keystore path to use absolute path /opt/aitbc/data/keystore/ for latest active values

This commit is contained in:
2026-03-27 09:38:40 +01:00
parent 5cc4969e67
commit 907a4ef7c0

View File

@@ -62,8 +62,8 @@ class ChainSettings(BaseSettings):
gossip_broadcast_url: Optional[str] = None
# Keystore for proposer private key (future block signing)
keystore_path: Path = Path("./keystore")
keystore_password_file: Path = Path("./keystore/.password")
keystore_path: Path = Path("/opt/aitbc/data/keystore")
keystore_password_file: Path = Path("/opt/aitbc/data/keystore/.password")
settings = ChainSettings()