diff --git a/res/zec_qt_wallet_de.ts b/res/zec_qt_wallet_de.ts index 7ae446b..8e16394 100644 --- a/res/zec_qt_wallet_de.ts +++ b/res/zec_qt_wallet_de.ts @@ -678,7 +678,7 @@ - Error paying pirate URI + Error paying Hush URI Fehler bei der Bezahl HUSH URI diff --git a/res/zec_qt_wallet_es.ts b/res/zec_qt_wallet_es.ts index 8bd59f3..d4eab76 100644 --- a/res/zec_qt_wallet_es.ts +++ b/res/zec_qt_wallet_es.ts @@ -634,7 +634,7 @@ - Error paying pirate URI + Error paying Hush URI Error al pagar HUSH URI diff --git a/res/zec_qt_wallet_fr.ts b/res/zec_qt_wallet_fr.ts index d6329b4..4fe5f31 100644 --- a/res/zec_qt_wallet_fr.ts +++ b/res/zec_qt_wallet_fr.ts @@ -664,7 +664,7 @@ - Error paying pirate URI + Error paying Hush URI Erreur lors du paiement de l'URI diff --git a/res/zec_qt_wallet_it.ts b/res/zec_qt_wallet_it.ts index 999b05f..5d78d48 100644 --- a/res/zec_qt_wallet_it.ts +++ b/res/zec_qt_wallet_it.ts @@ -642,7 +642,7 @@ - Error paying pirate URI + Error paying Hush URI Errore nel pagamento dell'URI Hush diff --git a/res/zec_qt_wallet_pt.ts b/res/zec_qt_wallet_pt.ts index 752a458..5693de9 100644 --- a/res/zec_qt_wallet_pt.ts +++ b/res/zec_qt_wallet_pt.ts @@ -634,7 +634,7 @@ - Error paying pirate URI + Error paying Hush URI diff --git a/res/zec_qt_wallet_template.ts b/res/zec_qt_wallet_template.ts index 040a4e5..65ede06 100644 --- a/res/zec_qt_wallet_template.ts +++ b/res/zec_qt_wallet_template.ts @@ -642,7 +642,7 @@ - Error paying pirate URI + Error paying Hush URI diff --git a/src/connection.cpp b/src/connection.cpp index e1c0ec6..fa92094 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -567,7 +567,7 @@ QString ConnectionLoader::zcashParamsDir() { QDir().mkpath(paramsLocation.absolutePath()); } - main->logger->write("Found Zcash params directory at " + paramsLocation.absolutePath()); + main->logger->write("Found Hush params directory at " + paramsLocation.absolutePath()); return paramsLocation.absolutePath(); } diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 1ad4da5..399468a 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -891,7 +891,7 @@ void MainWindow::payZcashURI(QString uri, QString myAddr) { qDebug() << "Received URI " << uri; PaymentURI paymentInfo = Settings::parseURI(uri); if (!paymentInfo.error.isEmpty()) { - QMessageBox::critical(this, tr("Error paying pirate URI"), + QMessageBox::critical(this, tr("Error paying Hush URI"), tr("URI should be of the form 'hush:?amt=x&memo=y") + "\n" + paymentInfo.error); return; } diff --git a/src/websockets.cpp b/src/websockets.cpp index a0f34a2..58ee1b8 100644 --- a/src/websockets.cpp +++ b/src/websockets.cpp @@ -112,7 +112,8 @@ void WormholeClient::connect() { QObject::connect(m_webSocket, &QWebSocket::connected, this, &WormholeClient::onConnected); QObject::connect(m_webSocket, &QWebSocket::disconnected, this, &WormholeClient::closed); - m_webSocket->open(QUrl("wss://wormhole.zecqtwallet.com:443")); + m_webSocket->open(QUrl("wss://wormhole.myhush.org:443")); + //TODO: use env var to over-ride //m_webSocket->open(QUrl("ws://127.0.0.1:7070")); }