reverted memo default
This commit is contained in:
parent
0c0e6e9275
commit
afbe46be8b
2 changed files with 1 additions and 2 deletions
|
|
@ -50,8 +50,6 @@ async def create_invoice(
|
|||
webhook: Optional[str] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Tuple[str, str]:
|
||||
if memo == None:
|
||||
memo = "LN payment"
|
||||
invoice_memo = None if description_hash else memo
|
||||
|
||||
ok, checking_id, payment_request, error_message = await WALLET.create_invoice(
|
||||
|
|
|
|||
|
|
@ -82,6 +82,7 @@ async def api_lnurl_callback(request: Request, link_id):
|
|||
return LnurlErrorResponse(
|
||||
reason=f"Got a comment with {len(comment)} characters, but can only accept {link.comment_chars}"
|
||||
).dict()
|
||||
|
||||
payment_hash, payment_request = await create_invoice(
|
||||
wallet_id=link.wallet,
|
||||
amount=int(amount_received / 1000),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue