After a utxo rescan, the cached balance should be invalidated

This commit is contained in:
nicolas.dorier
2022-05-27 16:26:31 +09:00
committed by Kukks
parent a9e08dd587
commit 20d653798c
4 changed files with 9 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
using System.ComponentModel.DataAnnotations;
using BTCPayServer.Data;
using BTCPayServer.Services.Apps;
namespace BTCPayServer.Models.AppViewModels
@@ -66,7 +65,6 @@ namespace BTCPayServer.Models.AppViewModels
[Display(Name = "Custom CSS Code")]
public string EmbeddedCSS { get; set; }
public RequiresRefundEmail RequiresRefundEmail { get; set; } = RequiresRefundEmail.InheritFromStore;
public StoreData Store { get; set; }
public string StoreId { get; set; }
}
}