Fixing validation error
This commit is contained in:
parent
5373ca0418
commit
bd42ad5836
@ -4960,7 +4960,7 @@
|
|||||||
input.customValidation = (value) => {
|
input.customValidation = (value) => {
|
||||||
if (!value) return { isValid: false, errorText: 'Please enter a BTC address' }
|
if (!value) return { isValid: false, errorText: 'Please enter a BTC address' }
|
||||||
return {
|
return {
|
||||||
isValid: btcOperator.validateAddr(value),
|
isValid: btcOperator.validateAddress(value),
|
||||||
errorText: `Invalid BTC address.<br> It usually starts with '1', '3' or 'bc1'`
|
errorText: `Invalid BTC address.<br> It usually starts with '1', '3' or 'bc1'`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user