Another one that seems like it might be worth changing:
; The polling interval between attempts to detect if an active channel has become ; inactive due to its peer going offline. ; chan-status-sample-interval=1m
setting this to 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?
chan-status-sample-interval=1m
verifying a rumor from telegram:
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
in which case, this should work:
chan-enable-timeout=9m chan-disable-timeout=10m chan-status-sample-interval=45s
reply
chan-status-sample-interval + chan-enable-timeout <= chan-disable-timeout
reply