Hello fellow node operators. What are you favorite lnd.conf non-default updates?
There is Plebnet's list: https://plebnet.wiki/wiki/LND_Configuration_Settings which has some obvious things like enabling watchtowers
and some others like
routerrpc.minrtprob=0.005
but what else are ya'll doing?
Zap-O-Matic has noticed quite a lot of disconnected channels recently (WalletOfSatoshi seems down ALL THE FRIGGIN TIME). So we are looking to cut these defaults in half:
; The duration that a peer connection must be stable before attempting to send a ; channel update to re-enable or cancel a pending disables of the peer's channels ; on the network. ; chan-enable-timeout=19m ; The duration that must elapse after first detecting that an already active ; channel is actually inactive and sending channel update disabling it to the ; network. The pending disable can be canceled if the peer reconnects and becomes ; stable for chan-enable-timeout before the disable update is sent. ; chan-disable-timeout=20m
to
chan-enable-timeout=9m chan-disable-timeout=10m
Do you have custom settings for these? Have you had experience with having them smaller?
What else is not great as a default?
coin-selection-strategy=random
to my conf :)bitcoin.minhtlc=10000
30s
would allow your node to detect offline channels faster at a cost of more checks. Would it be crazy to cut this in half?pay attention with these settings. chan-disable-timeout, chan-enable-timeout and chan-status-sample-interval I think must match in a certain way (x + y < z) I read somewhere or else LND doesn't startup anymore
connectiontimeout=4m
because I have a tor peer that kept dropping off because it went beyond the 2000ms ping latency. Anyone think this is dangerous to increase?