Difference between revisions of "Using Autopilot on LND"

From lightningwiki.net
Jump to navigation Jump to search
m (added small details)
Line 1: Line 1:
Autopilot is a way of automatically opening channels to peers.
[[Autopilot]] is a way of automatically opening and managing channels with peers.
 
= Warning =
= Warning =
{{ALERT|Autopilot is currently broken in lnd 0.5.2 for use on mainnet. It works, but it creates channels in ways that we really don't want to see channels being created. }}
{{ALERT|Autopilot is currently broken in lnd 0.5.2 for use on mainnet. It works, but it creates channels in ways that we really don't want to see channels being created. }}
Line 20: Line 21:


{{ALERT|According to Alex, Autopilot is not designed for [[mainnet]]}}
{{ALERT|According to Alex, Autopilot is not designed for [[mainnet]]}}
=Miscellaneous=
[[Autopilot]] is available in the [[Casa]] hardware Lightning Node.
=References=
* [https://github.com/lightningnetwork/lnd/commit/306c4aef8e3af44fb3f2d8f52fc887f2c48e9c04 Github commit and short explanation]
* [https://www.rene-pickhardt.de/index.html%3Fp=2085.html Blog post]

Revision as of 14:43, 28 February 2019

Autopilot is a way of automatically opening and managing channels with peers.

Warning

Error creating thumbnail: File missing
Alert! Be careful!
Autopilot is currently broken in lnd 0.5.2 for use on mainnet. It works, but it creates channels in ways that we really don't want to see channels being created.

Not recommended to used

  • It favors nodes with more channels
  • It divides capital to make quite small channels
  • It can only be influenced in limited ways
  • It stops working after making a set number of channels

Settings

Below settings seem to work. Update this page if you know more ;).

  --autopilot.active \
  --autopilot.allocation=0.9 \
  --autopilot.minchansize=182817 \
  --autopilot.maxchansize=682819 \
  --autopilot.maxchannels=50000 \
Error creating thumbnail: File missing
Alert! Be careful!
According to Alex, Autopilot is not designed for mainnet

Miscellaneous

Autopilot is available in the Casa hardware Lightning Node.

References