aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/wallet.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-29 17:49:59 +0800
committerobscuren <geffobscura@gmail.com>2014-05-29 17:49:59 +0800
commitefb3ee044b6bc05b73794450ec4b1953fe38350a (patch)
treef2f7bd11b48ae1c2428cd58a6ad936656ce52b7f /ethereal/assets/qml/wallet.qml
parent0b4c42d75694787d47697288266c073a3cf41c48 (diff)
downloadgo-tangerine-efb3ee044b6bc05b73794450ec4b1953fe38350a.tar.gz
go-tangerine-efb3ee044b6bc05b73794450ec4b1953fe38350a.tar.zst
go-tangerine-efb3ee044b6bc05b73794450ec4b1953fe38350a.zip
Removed regexp for namereg
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r--ethereal/assets/qml/wallet.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml
index 847f219a9..98cccd767 100644
--- a/ethereal/assets/qml/wallet.qml
+++ b/ethereal/assets/qml/wallet.qml
@@ -837,7 +837,7 @@ ApplicationWindow {
TextField {
id: txFuelRecipient
placeholderText: "Contract address"
- validator: RegExpValidator { regExp: /[a-f0-9]{40}/ }
+ //validator: RegExpValidator { regExp: /[a-f0-9]{40}/ }
visible: false
width: 530
}
@@ -948,7 +948,7 @@ ApplicationWindow {
id: txSimpleRecipient
placeholderText: "Recipient address"
Layout.fillWidth: true
- validator: RegExpValidator { regExp: /[a-f0-9]{40}/ }
+ //validator: RegExpValidator { regExp: /[a-f0-9]{40}/ }
width: 530
onTextChanged: { checkFormState() }
}