Skip to content

Commit eac2b84

Browse files
committed
Fix syntax error on btc node healthcheck script
1 parent c094504 commit eac2b84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/bitcoin-node-healthcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ case "$BITCOIN_NETWORK" in
66
mainnet) NETWORK="" ;;
77
signet) NETWORK="-signet" ;;
88
testnet) NETWORK="-testnet" ;;
9-
regtest|"") NETWORK="-regtest" ;; regtest is the default
9+
regtest|"") NETWORK="-regtest" ;; # regtest is the default
1010
*)
1111
echo "Unknown BITCOIN_NETWORK: $BITCOIN_NETWORK"
1212
exit 1

0 commit comments

Comments
 (0)