From 907a4ef7c02baab74cb6d0bb48b5780df941ad1b Mon Sep 17 00:00:00 2001 From: aitbc1 Date: Fri, 27 Mar 2026 09:38:40 +0100 Subject: [PATCH] config: update keystore path to use absolute path /opt/aitbc/data/keystore/ for latest active values --- apps/blockchain-node/src/aitbc_chain/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/blockchain-node/src/aitbc_chain/config.py b/apps/blockchain-node/src/aitbc_chain/config.py index 53bf1337..ace7e9bf 100755 --- a/apps/blockchain-node/src/aitbc_chain/config.py +++ b/apps/blockchain-node/src/aitbc_chain/config.py @@ -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()