mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
fix fee on lntxbot wallets.
This commit is contained in:
parent
45148d285e
commit
9dd040186d
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class LntxbotWallet(Wallet):
|
|||
|
||||
data = r.json()
|
||||
checking_id = data["payment_hash"]
|
||||
fee_msat = data["fee_msat"]
|
||||
fee_msat = -data["fee_msat"]
|
||||
preimage = data["payment_preimage"]
|
||||
return PaymentResponse(True, checking_id, fee_msat, preimage, None)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue