From bd42ad5836339fa44ef34205f5ebd51b369f8195 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Wed, 8 Nov 2023 21:14:15 +0530 Subject: [PATCH] Fixing validation error --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4fc43f5..67cf49c 100644 --- a/index.html +++ b/index.html @@ -4960,7 +4960,7 @@ input.customValidation = (value) => { if (!value) return { isValid: false, errorText: 'Please enter a BTC address' } return { - isValid: btcOperator.validateAddr(value), + isValid: btcOperator.validateAddress(value), errorText: `Invalid BTC address.
It usually starts with '1', '3' or 'bc1'` } }