feat: Add better error messages on crypto selector
All checks were successful
Build Docker / BuildImage (push) Successful in 43s
All checks were successful
Build Docker / BuildImage (push) Successful in 43s
This commit is contained in:
parent
702282d11f
commit
56349561f9
@ -604,7 +604,7 @@ def now_old():
|
|||||||
|
|
||||||
# endregion
|
# endregion
|
||||||
|
|
||||||
|
#region Donate
|
||||||
@app.route("/donate")
|
@app.route("/donate")
|
||||||
def donate():
|
def donate():
|
||||||
global handshake_scripts
|
global handshake_scripts
|
||||||
@ -698,9 +698,9 @@ def donate():
|
|||||||
if proof:
|
if proof:
|
||||||
cryptoHTML += proof
|
cryptoHTML += proof
|
||||||
else:
|
else:
|
||||||
cryptoHTML += f"<br>Invalid coin: {crypto}<br>"
|
cryptoHTML += f'<br>Invalid offchain token: {token["symbol"]}<br>'
|
||||||
else:
|
else:
|
||||||
cryptoHTML += f"<br>Invalid coin: {crypto}<br>"
|
cryptoHTML += f"<br>Invalid chain: {crypto}<br>"
|
||||||
|
|
||||||
if os.path.isfile(f".well-known/wallets/.domains"):
|
if os.path.isfile(f".well-known/wallets/.domains"):
|
||||||
# Get json of all domains
|
# Get json of all domains
|
||||||
@ -750,6 +750,7 @@ def addressQR(data):
|
|||||||
# Return the QR code image as a response
|
# Return the QR code image as a response
|
||||||
return send_file(qr_image_path, mimetype="image/png")
|
return send_file(qr_image_path, mimetype="image/png")
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
@app.route("/supersecretpath")
|
@app.route("/supersecretpath")
|
||||||
def supersecretpath():
|
def supersecretpath():
|
||||||
|
Loading…
Reference in New Issue
Block a user