From 4a152e8ffc69ed4d36a5d570cb2904772d8686f3 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sat, 13 Jan 2018 17:32:08 +0900 Subject: [PATCH] fix build --- BTCPayServer/Services/Invoices/InvoiceEntity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/Invoices/InvoiceEntity.cs b/BTCPayServer/Services/Invoices/InvoiceEntity.cs index ddf16ee9d..bb21385ba 100644 --- a/BTCPayServer/Services/Invoices/InvoiceEntity.cs +++ b/BTCPayServer/Services/Invoices/InvoiceEntity.cs @@ -417,7 +417,7 @@ namespace BTCPayServer.Services.Invoices if (alwaysIncludeBTC) { var btcNetwork = networkProvider?.GetNetwork("BTC"); - phantom = new CryptoData() { ParentEntity = this, IsPhantomBTC = true, Rate = Rate, CryptoCode = "BTC", TxFee = TxFee, FeeRate = new FeeRate(TxFee, 100), DepositAddress = DepositAddress, Network = btcNetwork } + phantom = new CryptoData() { ParentEntity = this, IsPhantomBTC = true, Rate = Rate, CryptoCode = "BTC", TxFee = TxFee, FeeRate = new FeeRate(TxFee, 100), DepositAddress = DepositAddress, Network = btcNetwork }; rates.Add("BTC", phantom); } if (CryptoData != null)