aboutsummaryrefslogtreecommitdiff
path: root/components/InputMulti.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-03-27 02:03:59 +0200
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:04 +0100
commit3c2404473672991b51cbe6ec6d2d9326e9f85ca8 (patch)
treec8c97c8835195bf77be93da24f84f5c3b3e7ce2d /components/InputMulti.qml
parent3d4eb7a5f5f63e52592faeff77cb76838a5add5e (diff)
downloadmonzero-gui-3c2404473672991b51cbe6ec6d2d9326e9f85ca8.tar.gz
monzero-gui-3c2404473672991b51cbe6ec6d2d9326e9f85ca8.tar.xz
monzero-gui-3c2404473672991b51cbe6ec6d2d9326e9f85ca8.zip
Cleanup after rebase
Diffstat (limited to 'components/InputMulti.qml')
-rw-r--r--components/InputMulti.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/InputMulti.qml b/components/InputMulti.qml
index 9917eb52..3b860fdf 100644
--- a/components/InputMulti.qml
+++ b/components/InputMulti.qml
@@ -59,7 +59,7 @@ TextArea {
if(addressValidation){
// js replacement for `RegExpValidator { regExp: /[0-9A-Fa-f]{95}/g }`
textArea.text = textArea.text.replace(/[^a-z0-9]/gi,'');
- var address_ok = TxUtils.checkAddress(textArea.text, appWindow.persistentSettings.testnet);
+ var address_ok = TxUtils.checkAddress(textArea.text, appWindow.persistentSettings.nettype);
if(!address_ok) error = true;
else error = false;
TextArea.cursorPosition = textArea.text.length;