Skip to content

Commit 8ae435a

Browse files
committed
fix(docker): update btcd rpc port to 18556 for simnet in lnd start script
1 parent 032c138 commit 8ae435a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/lnd/start-lnd.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ HOSTNAME=$(hostname)
6060
# Also, setting --rpclisten to $HOSTNAME will cause it to listen on an IP
6161
# address that is reachable on the internal network. If you do this outside of
6262
# docker, this might be a security concern!
63-
# [:18555] is the default btcd RPC port in SIMNET network.
63+
# [:18556] is the default btcd RPC port in SIMNET network.
6464

6565
if [ "$BACKEND" == "bitcoind" ]; then
6666
exec lnd \
@@ -83,7 +83,7 @@ elif [ "$BACKEND" == "btcd" ]; then
8383
"--$CHAIN.$NETWORK" \
8484
"--$CHAIN.node"="$BACKEND" \
8585
"--$BACKEND.rpccert"="$RPCCRTPATH" \
86-
"--$BACKEND.rpchost"="$RPCHOST:18555" \
86+
"--$BACKEND.rpchost"="$RPCHOST:18556" \
8787
"--$BACKEND.rpcuser"="$RPCUSER" \
8888
"--$BACKEND.rpcpass"="$RPCPASS" \
8989
"--rpclisten=127.0.0.1:10009" \

0 commit comments

Comments
 (0)