From f4c48245d80918fb8af1efb2d9a856289f1c27a6 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Tue, 26 Jul 2022 17:55:21 +0530 Subject: [PATCH] bug fix --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 52c44d1..15d7b5b 100644 --- a/index.html +++ b/index.html @@ -767,7 +767,9 @@ const address = getRef('check_address_input').value; if (address !== params.address) { getRef('check_address_input').value = params.address - getRef('check_address_button').click() + if (btc_api.validateAddress(params.address)) { + render.transactions(params.address) + } } } else { getRef('check_address_button').disabled = true;