mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Payout Destination Handling fixes #2765 This PR: * reactivates the BIP21 support for payouts. * allows LNUrl destinations to be reusable. * allows addresses to be reused in claims as long as the other claims are in a final state * Ensure bolt amount matches the payout amount * fixes * reduce duplicate parsing of bolt * make hash the id of bolt * better bolt11 tostring * use cached payment request from lnurl
31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services
|
|
{
|
|
public class MigrationSettings
|
|
{
|
|
[JsonProperty("MigrateHotwalletProperty2")]
|
|
public bool MigrateHotwalletProperty { get; set; }
|
|
public bool MigrateU2FToFIDO2{ get; set; }
|
|
public bool UnreachableStoreCheck { get; set; }
|
|
public bool DeprecatedLightningConnectionStringCheck { get; set; }
|
|
public bool ConvertMultiplierToSpread { get; set; }
|
|
public bool ConvertNetworkFeeProperty { get; set; }
|
|
public bool ConvertCrowdfundOldSettings { get; set; }
|
|
public bool ConvertWalletKeyPathRoots { get; set; }
|
|
public bool CheckedFirstRun { get; set; }
|
|
public bool PaymentMethodCriteria { get; set; }
|
|
public bool TransitionToStoreBlobAdditionalData { get; set; }
|
|
public bool TransitionInternalNodeConnectionString { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
// Done in DbMigrationsHostedService
|
|
public int? MigratedInvoiceTextSearchPages { get; set; }
|
|
public bool MigrateAppCustomOption { get; set; }
|
|
public bool MigratePayoutDestinationId { get; set; }
|
|
}
|
|
}
|