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'`
}
}