From b4f026a9466b54a014d8a55847ff372449250beb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 23 Feb 2019 10:21:06 -0500 Subject: [PATCH] add transaction currency to details --- src/Billing/Controllers/BitPayController.cs | 2 +- src/Core/Core.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Billing/Controllers/BitPayController.cs b/src/Billing/Controllers/BitPayController.cs index 4d4ee58e11..7841039bc1 100644 --- a/src/Billing/Controllers/BitPayController.cs +++ b/src/Billing/Controllers/BitPayController.cs @@ -111,7 +111,7 @@ namespace Bit.Billing.Controllers Gateway = GatewayType.BitPay, GatewayId = invoice.Id, PaymentMethodType = PaymentMethodType.BitPay, - Details = $"BitPay {invoice.Id}" + Details = $"{invoice.TransactionCurrency}, BitPay {invoice.Id}" }; await _transactionRepository.CreateAsync(tx); diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj index 3940b9cc65..e3df1ade5b 100644 --- a/src/Core/Core.csproj +++ b/src/Core/Core.csproj @@ -25,7 +25,7 @@ - +