From 23236c96cb515915a2727a2eb0f016ab390f3e3a Mon Sep 17 00:00:00 2001 From: Andrew Camilleri Date: Thu, 1 Apr 2021 08:56:22 +0200 Subject: [PATCH] Remove internal setters in BTCPayNetwork --- BTCPayServer.Common/BTCPayNetwork.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BTCPayServer.Common/BTCPayNetwork.cs b/BTCPayServer.Common/BTCPayNetwork.cs index 76c5c8dca..50b2bc197 100644 --- a/BTCPayServer.Common/BTCPayNetwork.cs +++ b/BTCPayServer.Common/BTCPayNetwork.cs @@ -54,7 +54,7 @@ namespace BTCPayServer { public Network NBitcoinNetwork { get { return NBXplorerNetwork?.NBitcoinNetwork; } } public NBXplorer.NBXplorerNetwork NBXplorerNetwork { get; set; } - public bool SupportRBF { get; internal set; } + public bool SupportRBF { get; set; } public string LightningImagePath { get; set; } public BTCPayDefaultSettings DefaultSettings { get; set; } public KeyPath CoinType { get; set; } @@ -64,8 +64,8 @@ namespace BTCPayServer public virtual bool WalletSupported { get; set; } = true; public virtual bool ReadonlyWallet { get; set; } = false; public virtual bool VaultSupported { get; set; } = false; - public int MaxTrackedConfirmation { get; internal set; } = 6; - public string UriScheme { get; internal set; } + public int MaxTrackedConfirmation { get; set; } = 6; + public string UriScheme { get; set; } public bool SupportPayJoin { get; set; } = false; public bool SupportLightning { get; set; } = true; @@ -152,7 +152,7 @@ namespace BTCPayServer } } - public string BlockExplorerLinkDefault { get; internal set; } + public string BlockExplorerLinkDefault { get; set; } public string DisplayName { get; set; } public int Divisibility { get; set; } = 8; [Obsolete("Should not be needed")]