Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Apr 23, 2024
1 parent c1ce0ba commit 3b67cc2
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 @@ -67,7 +67,7 @@ def execute(bech32_or_address: str, value: str) -> LnurlResponseModel:
elif isinstance(res, LnurlAuthResponse) and res.tag == "login":
return execute_login(res, value)

raise Exception(f"{res.tag} not implemented") # type: ignore
raise LnurlResponseException(f"{res.tag} not implemented") # type: ignore


def execute_pay_request(res: LnurlPayResponse, msat: str) -> LnurlResponseModel:
Expand Down

0 comments on commit 3b67cc2

Please sign in to comment.