Removed exponentiation on invoice request amount

Fixes #620
This commit is contained in:
rockstardev
2019-03-03 16:51:19 -06:00
committed by Rockstar Developer
parent 358f1ffc43
commit 3fdfd0adfd
3 changed files with 3 additions and 1 deletions

View File

@@ -140,6 +140,7 @@ namespace BTCPayServer.Models.PaymentRequestViewModels
public string Id { get; set; }
public DateTime ExpiryDate { get; set; }
public decimal Amount { get; set; }
public string AmountFormatted { get; set; }
public string Status { get; set; }
public List<PaymentRequestInvoicePayment> Payments { get; set; }