From 71667628f90dfbda3d64f61d9e144d6f490b36bc Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 23 Feb 2019 08:00:25 -0500 Subject: [PATCH] bitpay invoice id --- src/Billing/Controllers/BitPayController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Billing/Controllers/BitPayController.cs b/src/Billing/Controllers/BitPayController.cs index 3f6416fb5a..fd8ec31a68 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 = invoice.Id + Details = $"BitPay #{invoice.Id}" }; await _transactionRepository.CreateAsync(tx);