Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 2ff743a

Browse files
authored
Merge pull request #620 from lightninglabs/autopilot-fix
Fix autopilot + syncing speed.
2 parents 18fc797 + 4140e5a commit 2ff743a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

assets/script/install_lnd.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# versions
44
GO_TAG=1.10.3
5-
LND_TAG=baee07ef480c15a731e0c87dc98d27269c5a80fa
5+
LND_TAG=fb95858afce6d7129758e7677bcb1552c5be2c51
66
BTCD_TAG=f899737d7f2764dc13e4d01ff00108ec58f766a9
77

88
# create empty btcd.conf for btcctl
@@ -34,7 +34,7 @@ go get -u github.com/Masterminds/glide
3434
git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
3535
cd $GOPATH/src/github.com/lightningnetwork/lnd
3636
git checkout $LND_TAG
37-
make && make install
37+
make && make install tags=experimental
3838

3939
# install btcd
4040
git clone https://github.com/btcsuite/btcd $GOPATH/src/github.com/btcsuite/btcd

public/lnd-child-process.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ module.exports.startLndProcess = async function({
6060
'--bitcoin.active',
6161
'--debuglevel=info',
6262
`--lnddir=${lndSettingsDir}`,
63+
`--routing.assumechanvalid`,
6364
lndPort ? `--rpclisten=localhost:${lndPort}` : '',
6465
lndPeerPort ? `--listen=localhost:${lndPeerPort}` : '',
6566
lndRestPort ? `--restlisten=localhost:${lndRestPort}` : '',

0 commit comments

Comments
 (0)