Allow any bolt11 invoice for pullpayments/payouts (#4857)

closes #4830

If users want to deal with expired payout destinations, then they should be able to conifugre it that way. Some wallets simply do not allow customizing the bolt11 expiry and the defaults are much less than a day. I think we should merge #3857 if we introduce this as an automated payotu processor for lightning running every few minutes would work together with this and solve it.
This commit is contained in:
Andrew Camilleri
2023-04-06 08:54:19 +02:00
committed by GitHub
parent b24764d679
commit e239390ebf
5 changed files with 6 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ namespace BTCPayServer.Models.StoreViewModels
public string DefaultCurrency { get; set; }
[Display(Name = "Minimum acceptable expiration time for BOLT11 for refunds")]
[Range(1, 365 * 10)]
[Range(0, 365 * 10)]
public long BOLT11Expiration { get; set; }
}
}