Merge branch 'development' into feature/#934-advanced-settings

This commit is contained in:
fernandomg 2020-07-15 08:33:22 -03:00
commit fa30de45a8
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ const isTxValid = (t: SafeAppTx): boolean => {
return false
}
if (typeof t.value === 'string' && !/^\d+$/.test(t.value)) {
if (typeof t.value === 'string' && !/^(0x)?[0-9a-f]+$/i.test(t.value)) {
return false
}