diff --git a/BTCPayServer/Controllers/InvoiceController.cs b/BTCPayServer/Controllers/InvoiceController.cs index 419707e81..4ca776621 100644 --- a/BTCPayServer/Controllers/InvoiceController.cs +++ b/BTCPayServer/Controllers/InvoiceController.cs @@ -91,8 +91,6 @@ namespace BTCPayServer.Controllers entity.PaymentTolerance = storeBlob.PaymentTolerance; if (additionalTags != null) entity.InternalTags.AddRange(additionalTags); - if (storeBlob.InternalTags != null) - entity.InternalTags.AddRange(storeBlob.InternalTags); //Another way of passing buyer info to support FillBuyerInfo(invoice.Buyer, entity.BuyerInformation); if (entity?.BuyerInformation?.BuyerEmail != null) diff --git a/BTCPayServer/Data/StoreData.cs b/BTCPayServer/Data/StoreData.cs index a5d44e957..0232eafa0 100644 --- a/BTCPayServer/Data/StoreData.cs +++ b/BTCPayServer/Data/StoreData.cs @@ -424,9 +424,6 @@ namespace BTCPayServer.Data public EmailSettings EmailSettings { get; set; } - [JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] - public HashSet InternalTags { get; set; } = new HashSet(); - public IPaymentFilter GetExcludedPaymentMethods() { #pragma warning disable CS0618 // Type or member is obsolete