From 7cf07b27e38c9cca140bcda0121001aa6b4e4703 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 18 Dec 2018 19:20:10 +0900 Subject: [PATCH] Invoice export should not prefix amounts with crypto code --- BTCPayServer/Services/Invoices/Export/InvoiceExport.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BTCPayServer/Services/Invoices/Export/InvoiceExport.cs b/BTCPayServer/Services/Invoices/Export/InvoiceExport.cs index f71366ec1..59e3725fc 100644 --- a/BTCPayServer/Services/Invoices/Export/InvoiceExport.cs +++ b/BTCPayServer/Services/Invoices/Export/InvoiceExport.cs @@ -67,9 +67,9 @@ namespace BTCPayServer.Services.Invoices.Export ConversionRate = pmethod.Rate, PaymentType = details.GetPaymentType() == Payments.PaymentTypes.BTCLike ? "OnChain" : "OffChain", Destination = details.GetPaymentDestination(), - PaymentDue = $"{accounting.MinimumTotalDue} {cryptoCode}", - PaymentPaid = $"{accounting.CryptoPaid} {cryptoCode}", - PaymentOverpaid = $"{accounting.OverpaidHelper} {cryptoCode}", + PaymentDue = $"{accounting.MinimumTotalDue}", + PaymentPaid = $"{accounting.CryptoPaid}", + PaymentOverpaid = $"{accounting.OverpaidHelper}", OrderId = invoice.OrderId, StoreId = invoice.StoreId,