Skip to content

Commit

Permalink
chore(lnd): disable autopilot (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
reliveyy authored Jun 19, 2020
1 parent 2a60535 commit 81419e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions images/lnd/0.10.1-beta/lnd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ bitcoind.rpcpass=xu
bitcoind.zmqpubrawblock=tcp://bitcoind:28332
bitcoind.zmqpubrawtx=tcp://bitcoind:28333

[autopilot]
autopilot.active=false

[tor]
tor.active=1
tor.socks=9050
Expand Down
3 changes: 3 additions & 0 deletions images/lnd/0.9.0-beta-ltc/lnd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ litecoind.rpcpass=xu
litecoind.zmqpubrawblock=tcp://litecoind:29332
litecoind.zmqpubrawtx=tcp://litecoind:29333

[autopilot]
autopilot.active=false

[tor]
tor.active=1
tor.socks=9050
Expand Down
2 changes: 2 additions & 0 deletions images/utils/launcher/node/lnd.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def get_command(self):
"--neutrino.connect=btcd.simnet.exchangeunion.com:38555",
"--chan-enable-timeout=0m10s",
"--max-cltv-expiry=5000",
"--autopilot.active=false",
]
if self.chain == "litecoin":
# nohup lnd-ltc --noseedbackup --rpclisten=127.0.0.1:10001 --listen=127.0.0.1:10011 --restlisten=8001 --datadir=./data --logdir=./logs --nobootstrap --no-macaroons --litecoin.active --litecoin.simnet --debuglevel=debug --alias="LTC@$xname" --litecoin.node neutrino --neutrino.connect btcd.simnet.exchangeunion.com:39555 --chan-enable-timeout=0m10s --max-cltv-expiry=20000 > /dev/null 2>&1 &
Expand All @@ -73,6 +74,7 @@ def get_command(self):
"--neutrino.connect=btcd.simnet.exchangeunion.com:39555",
"--chan-enable-timeout=0m10s",
"--max-cltv-expiry=20000",
"--autopilot.active=false",
]

def get_environment(self):
Expand Down

0 comments on commit 81419e7

Please sign in to comment.