From 27f10b29d3a979a7cec00e772848d25621c6e5fa Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Jul 2026 18:53:34 +0000 Subject: [PATCH] babylon: pass --no-bls-password on babylond start babylond v4.3.0 prompts for a BLS key password on every start when bls_key.json exists unless start gets --no-bls-password; without it RPC replicas crash-loop with "failed to get BLS password: EOF". Co-authored-by: Cursor --- babylon/scripts/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babylon/scripts/init.sh b/babylon/scripts/init.sh index 519ef07d..e473f8f1 100644 --- a/babylon/scripts/init.sh +++ b/babylon/scripts/init.sh @@ -52,4 +52,4 @@ ct_configure_statesync "$CONFIG_DIR/config.toml" "$STATESYNC_RPC" ct_ensure_wasm "$HOME_DIR" "$WASM_SNAPSHOT_URL" ct_seed_priv_validator_state "$HOME_DIR" -exec babylond start --home "$HOME_DIR" --minimum-gas-prices "$MIN_GAS" "$@" +exec babylond start --home "$HOME_DIR" --minimum-gas-prices "$MIN_GAS" --no-bls-password "$@"