diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 341c982..7a31966 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -414,7 +414,7 @@ void MainWindow::setupStatusBar() { url = "https://explorer.testnet.z.cash/tx/" + txid; } else { - url = "https://explorer.zcha.in/transactions/" + txid; + url = "https://explorer.pirate.black/tx/" + txid; } QDesktopServices::openUrl(QUrl(url)); }); @@ -1093,7 +1093,7 @@ void MainWindow::setupBalancesTab() { if (Settings::getInstance()->isTestnet()) { url = "https://explorer.testnet.z.cash/address/" + addr; } else { - url = "https://explorer.zcha.in/accounts/" + addr; + url = "https://explorer.pirate.black/address/" + addr; } QDesktopServices::openUrl(QUrl(url)); }); @@ -1159,7 +1159,7 @@ void MainWindow::setupTransactionsTab() { if (Settings::getInstance()->isTestnet()) { url = "https://explorer.testnet.z.cash/tx/" + txid; } else { - url = "https://explorer.zcha.in/transactions/" + txid; + url = "https://explorer.pirate.black/tx/" + txid; } QDesktopServices::openUrl(QUrl(url)); });