return fee in status (#1598)
This commit is contained in:
parent
239f166a14
commit
994b203a8e
1 changed files with 1 additions and 1 deletions
|
|
@ -386,7 +386,7 @@ async def check_transaction_status(
|
||||||
return PaymentStatus(None)
|
return PaymentStatus(None)
|
||||||
if not payment.pending:
|
if not payment.pending:
|
||||||
# note: before, we still checked the status of the payment again
|
# note: before, we still checked the status of the payment again
|
||||||
return PaymentStatus(True)
|
return PaymentStatus(True, fee_msat=payment.fee)
|
||||||
|
|
||||||
status: PaymentStatus = await payment.check_status()
|
status: PaymentStatus = await payment.check_status()
|
||||||
return status
|
return status
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue