multi: make canceled invoice garbage collection configurable

This commit extends the application config with a flag to control canceled
invoice garbage collection upon startup.
This commit is contained in:
Andras Banki-Horvath
2020-07-28 23:57:51 +02:00
parent 0ea763d83c
commit a0d7877d9a
4 changed files with 18 additions and 8 deletions

View File

@@ -242,6 +242,8 @@ type Config struct {
KeysendHoldTime time.Duration `long:"keysend-hold-time" description:"If non-zero, keysend payments are accepted but not immediately settled. If the payment isn't settled manually after the specified time, it is canceled automatically. [experimental]"`
GcCanceledInvoicesOnStartup bool `long:"gc-canceled-invoices-on-startup" description:"If true, we'll attempt to garbage collect canceled invoices upon start."`
Routing *routing.Conf `group:"routing" namespace:"routing"`
Workers *lncfg.Workers `group:"workers" namespace:"workers"`