Skip to content

Commit

Permalink
await handle
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed May 8, 2024
1 parent d0ccf3b commit a29ae60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lnurl/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def execute(
timeout: Optional[int] = None,
) -> LnurlResponseModel:
try:
res = handle(bech32_or_address, user_agent=user_agent, timeout=timeout)
res = await handle(bech32_or_address, user_agent=user_agent, timeout=timeout)
except Exception as exc:
raise LnurlResponseException(str(exc))

Expand Down

0 comments on commit a29ae60

Please sign in to comment.