diff --git a/cashu/lightning/lnmarkets.py b/cashu/lightning/lnmarkets.py index b3004dcb..55bc33de 100644 --- a/cashu/lightning/lnmarkets.py +++ b/cashu/lightning/lnmarkets.py @@ -243,10 +243,11 @@ async def pay_invoice( # lnmarkets does not provide a payment_preimage :( checking_id = data["id"] + fee_paid = int(data["fee"]) return PaymentResponse( ok=True, checking_id=checking_id, - fee=Amount(unit=self.unit, amount=quote.fee_reserve), + fee=Amount(unit=self.unit, amount=fee_paid), ) async def get_invoice_status(self, checking_id: str) -> PaymentStatus: