From 387e6580d4fa4260fe3f0ec0c0021deb17d8b536 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 15 Dec 2019 09:23:39 -0500 Subject: [PATCH] debug --- src/settings.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/settings.cpp b/src/settings.cpp index c0624a1..87dd502 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -1,4 +1,5 @@ // Copyright 2019 The Hush developers +// Released under the GPLv3 #include "mainwindow.h" #include "settings.h" @@ -332,7 +333,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); }