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

Commit 9796ec3

Browse files
Merge pull request #1156 from lightninglabs/dev/prevent-phantom-channels
Dev/prevent phantom channels
2 parents 4842e8b + ff52dfe commit 9796ec3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mobile/android/app/src/main/assets/lnd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ neutrino.feeurl=https://nodes.lightning.computer/fees/v1/btctestnet-fee-estimate
1717
[autopilot]
1818
autopilot.active=0
1919
autopilot.private=1
20-
autopilot.minconfs=0
20+
autopilot.minconfs=1
2121
autopilot.allocation=1.0
2222
autopilot.heuristic=externalscore:0.95
2323
autopilot.heuristic=preferential:0.05

mobile/ios/lightning/lnd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ neutrino.feeurl=https://nodes.lightning.computer/fees/v1/btctestnet-fee-estimate
1717
[autopilot]
1818
autopilot.active=0
1919
autopilot.private=1
20-
autopilot.minconfs=0
20+
autopilot.minconfs=1
2121
autopilot.allocation=1.0
2222
autopilot.heuristic=externalscore:0.95
2323
autopilot.heuristic=preferential:0.05

public/lnd-child-process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports.startLndProcess = async function({
6464
`--routing.assumechanvalid`,
6565
'--historicalsyncinterval=20m',
6666
'--autopilot.private',
67-
'--autopilot.minconfs=0',
67+
'--autopilot.minconfs=1',
6868
'--autopilot.allocation=0.95',
6969
'--autopilot.heuristic=externalscore:0.95',
7070
'--autopilot.heuristic=preferential:0.05',

0 commit comments

Comments
 (0)