From 2a602b6d61351ad8c8c731f688a4bd262c981a42 Mon Sep 17 00:00:00 2001 From: afederigo Date: Fri, 12 May 2017 02:42:27 +0500 Subject: [PATCH] docker: update docker instructions to be aware of multi-chain config This commit contains replacement of previous --rpccert flag on newest --bitcoin.rpccert flag in docker lnd config. --- docker/lnd/start-lnd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/lnd/start-lnd.sh b/docker/lnd/start-lnd.sh index 72492b9b..104019fa 100755 --- a/docker/lnd/start-lnd.sh +++ b/docker/lnd/start-lnd.sh @@ -47,10 +47,10 @@ BITCOIN_NETWORK=$(set_default "$BITCOIN_NETWORK" "simnet") lnd \ --datadir="/data" \ --logdir="/data" \ - --rpccert="/rpc/rpc.cert" \ --bitcoin.active \ "--bitcoin.$BITCOIN_NETWORK" \ --bitcoin.rpchost="btcd" \ + --bitcoin.rpccert="/rpc/rpc.cert" \ --bitcoin.rpcuser="$RPCUSER" \ --bitcoin.rpcpass="$RPCPASS" \ --debuglevel="$DEBUG" \