feat: Add new BTC address and fix file type of proofs
All checks were successful
Build Docker / BuildImage (push) Successful in 42s

This commit is contained in:
Nathan Woodburn 2024-12-29 22:44:00 +11:00
parent fb376a4906
commit d651e3a20c
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
I hereby confirm that I am the owner of the Bitcoin address bc1q60qy4s6gd7se8z6nc4wu49g4u5y8k2epd3djzc. I hereby confirm that I am the owner of the Bitcoin address bc1qzsp3wc2nwayl8awun57tggjn92w0awp9mzsn90.
Nathan.Woodburn/ Nathan.Woodburn/
-------------------- --------------------
H3oLoxLyax3gW6KkGfJiarseaktWWydyfS2TZ1zGoDlkIoMG/nIlNWNC5xc/uHCdPs+CIJgxNRq0GQI91qkalpg= HzEsSV17nmbMwnz55sW6jW/AnmYxW0TAdgiJsYRUyWs7WjBaGlzrvXkH1R8qosQXSvQ1nZNe9dS5SUCZtbNZzuM=
-------------------- --------------------
You can verify this signature by pasting it into a signature verification tool such as https://www.verifybitcoinmessage.com/. You can verify this signature by pasting it into a signature verification tool such as https://www.verifybitcoinmessage.com/. Don't forget to remove trailing newlines.

View File

@ -1 +1 @@
bc1q60qy4s6gd7se8z6nc4wu49g4u5y8k2epd3djzc bc1qzsp3wc2nwayl8awun57tggjn92w0awp9mzsn90

View File

@ -181,7 +181,7 @@ def removeTrailingSlash():
@app.route("/.well-known/wallets/<path:path>") @app.route("/.well-known/wallets/<path:path>")
def wallet(path): def wallet(path):
if path[0] == ".": if path[0] == "." and 'proof' not in path:
return send_from_directory( return send_from_directory(
".well-known/wallets", path, mimetype="application/json" ".well-known/wallets", path, mimetype="application/json"
) )