We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7b403c commit f8d4f39Copy full SHA for f8d4f39
2 files changed
uma_vasp/__init__.py
@@ -9,7 +9,6 @@
9
from uma import (
10
InMemoryNonceCache,
11
InMemoryPublicKeyCache,
12
- InvalidSignatureException,
13
ErrorCode,
14
PostTransactionCallback,
15
UmaException,
uma_vasp/sending_vasp.py
@@ -515,7 +515,7 @@ def _handle_internal_uma_payreq(
515
516
amount_receiving_currency = (
517
payreq_response.payment_info.amount
518
- if payreq_response.payment_info and payreq_response.payment_info.amount
+ if payreq_response.payment_info and payreq_response.payment_info.amount is not None
519
else round(amount_as_msats(invoice_data.amount) / 1000)
520
)
521
0 commit comments