removed print

This commit is contained in:
benarc 2021-12-19 23:13:15 +00:00
parent 31beec4f48
commit 4408f30285

View File

@ -466,7 +466,6 @@ async def api_lnurlscan(code: str):
@core_app.post("/api/v1/payments/decode")
async def api_payments_decode(data: str = Query(None)):
try:
print(data["data"][:5])
if data["data"][:5] == "LNURL":
url = lnurl.decode(data["data"])
return {"domain": url}