From 850317b592e968bfe94eeb83661d6ba9180a6e1a Mon Sep 17 00:00:00 2001 From: The-Sycorax <70348517+The-Sycorax@users.noreply.github.com> Date: Thu, 19 Oct 2023 01:38:33 -0400 Subject: [PATCH] Renamed denaro logo file --- .../wallet/{denaro_logo_3.png => denaro_logo.png} | Bin wallet_client.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename denaro/wallet/{denaro_logo_3.png => denaro_logo.png} (100%) diff --git a/denaro/wallet/denaro_logo_3.png b/denaro/wallet/denaro_logo.png similarity index 100% rename from denaro/wallet/denaro_logo_3.png rename to denaro/wallet/denaro_logo.png diff --git a/wallet_client.py b/wallet_client.py index 3fb4483..2f44b03 100644 --- a/wallet_client.py +++ b/wallet_client.py @@ -283,7 +283,7 @@ def handle_new_encrypted_wallet(password, totp_code, use2FA, filename, determini totp_qr_data = f'otpauth://totp/{filename}?secret={totp_secret}&issuer=Denaro Wallet Client' # Generate a QR code for the TOTP secret - qr_img = QRCodeUtils.generate_qr_with_logo(totp_qr_data, "./denaro/wallet/denaro_logo_3.png") + qr_img = QRCodeUtils.generate_qr_with_logo(totp_qr_data, "./denaro/wallet/denaro_logo.png") # Threading is used to show the QR window to the user while allowing input in the temrinal thread = threading.Thread(target=QRCodeUtils.show_qr_with_timer, args=(qr_img, filename, totp_secret,)) thread.start()