mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-01-19 14:45:41 +01:00
fix fee on lntxbot wallets.
This commit is contained in:
parent
45148d285e
commit
9dd040186d
@ -82,7 +82,7 @@ class LntxbotWallet(Wallet):
|
|||||||
|
|
||||||
data = r.json()
|
data = r.json()
|
||||||
checking_id = data["payment_hash"]
|
checking_id = data["payment_hash"]
|
||||||
fee_msat = data["fee_msat"]
|
fee_msat = -data["fee_msat"]
|
||||||
preimage = data["payment_preimage"]
|
preimage = data["payment_preimage"]
|
||||||
return PaymentResponse(True, checking_id, fee_msat, preimage, None)
|
return PaymentResponse(True, checking_id, fee_msat, preimage, None)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user