mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Support accepting 0 amount bolt 11 invoices for payouts * add test * handle validation better * fix case when we just want pp to provide amt * Update BTCPayServer/HostedServices/PullPaymentHostedService.cs * Update BTCPayServer/HostedServices/PullPaymentHostedService.cs * Update BTCPayServer/Data/Payouts/LightningLike/UILightningLikePayoutController.cs * Update UILightningLikePayoutController.cs * fix null * fix payments of payouts on cln * add comment * bump lightning lib --------- Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
11 lines
216 B
C#
11 lines
216 B
C#
#nullable enable
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public interface IClaimDestination
|
|
{
|
|
public string? Id { get; }
|
|
decimal? Amount { get; }
|
|
bool IsExplicitAmountMinimum => false;
|
|
}
|
|
}
|