amount paid should be in satoshies as other fields used for amount

This commit is contained in:
Roei Erez 2018-09-05 11:41:48 +03:00
parent 16b5a67c3a
commit f0201fbb32

@ -2766,6 +2766,7 @@ func createRPCInvoice(invoice *channeldb.Invoice) (*lnrpc.Invoice, error) {
preimage := invoice.Terms.PaymentPreimage
satAmt := invoice.Terms.Value.ToSatoshis()
amtPaid := invoice.AmtPaid.ToSatoshis()
return &lnrpc.Invoice{
Memo: string(invoice.Memo[:]),
@ -2784,7 +2785,7 @@ func createRPCInvoice(invoice *channeldb.Invoice) (*lnrpc.Invoice, error) {
RouteHints: routeHints,
AddIndex: invoice.AddIndex,
SettleIndex: invoice.SettleIndex,
AmtPaid: int64(invoice.AmtPaid),
AmtPaid: int64(amtPaid),
}, nil
}