catch error on redeem_lnurl_withdraw call.
This commit is contained in:
parent
d91dbbcac3
commit
64c4b97ec9
1 changed files with 4 additions and 4 deletions
|
|
@ -229,10 +229,10 @@ async def redeem_lnurl_withdraw(
|
|||
pass
|
||||
|
||||
async with httpx.AsyncClient() as client:
|
||||
await client.get(
|
||||
res["callback"],
|
||||
params=params,
|
||||
)
|
||||
try:
|
||||
await client.get(res["callback"], params=params)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
async def perform_lnurlauth(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue