Browse Source

Comment this out for now

pull/140/head
Duke Leto 4 years ago
parent
commit
e7aea9a8a3
  1. 2
      src/settings.cpp

2
src/settings.cpp

@ -401,7 +401,7 @@ bool Settings::isValidAddress(QString addr) {
QRegExp zsexp("^zs1[a-z0-9]{75}$", Qt::CaseInsensitive);
QRegExp ztsexp("^ztestsapling[a-z0-9]{76}", Qt::CaseInsensitive);
QRegExp texp("^R[a-z0-9]{33}$", Qt::CaseInsensitive);
qDebug() << "isValidAddress(" << addr << ")";
//qDebug() << "isValidAddress(" << addr << ")";
return texp.exactMatch(addr) || ztsexp.exactMatch(addr) || zsexp.exactMatch(addr);
}

Loading…
Cancel
Save