From 4563536b179ed03d01d7d4cb4179a4dc030b1dc5 Mon Sep 17 00:00:00 2001 From: void-57 Date: Fri, 5 Dec 2025 16:29:15 +0530 Subject: [PATCH] fix: Update notification message for invalid private key format --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9786baa..bd789b0 100644 --- a/index.html +++ b/index.html @@ -394,7 +394,7 @@
- + @@ -795,7 +795,7 @@ // Check if it looks like an address (ALGO address is 58 chars, BTC/FLO addresses are shorter) if (privateKey.length === 58 || (privateKey.length >= 25 && privateKey.length <= 35 && !isBase58Key)) { - showNotification('⚠️ Addresses are not allowed. Please enter a BTC/FLO/ALGO private key', 'error'); + showNotification('⚠️ Invalid private key format. Please enter a valid BTC/FLO/ALGO private key', 'error'); return; }