This commit is contained in:
Duke Leto
2021-02-01 09:59:19 -05:00
parent 0ac223e9f5
commit 0598ee20e8
2 changed files with 58 additions and 79 deletions

View File

@@ -277,14 +277,14 @@ QString Settings::getRandomServer() {
QList<QString> servers;
//TODO: This should be a much larger list which we randomly choose from
servers[0] = "https://lite.hush.is";
servers[1] = "https://miodrag.zone:9876";
servers[2] = "https://hush.leto.net:5420";
int x = rand() % 3;
return servers[1];
servers[1] = "https://devo.crabdance.com";
//servers[2] = "https://hush.leto.net:5420";
int x = rand() % 2;
return servers[x];
}
QString Settings::getDefaultServer() {
return "https://miodrag.zone:9876";
return "https://lite.hush.is";
}
void Settings::openAddressInExplorer(QString address) {
@@ -302,7 +302,7 @@ const QString Settings::txidStatusMessage = QString(QObject::tr("Tx submitted (r
QString Settings::getTokenName() {
if (Settings::getInstance()->isTestnet()) {
return "HUSHT";
return "TUSH";
} else {
return "HUSH";
}