Skip to content

Commit

Permalink
fix explorer and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
radix42 committed May 9, 2019
1 parent 6d03843 commit 4c89aae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ void MainWindow::setupStatusBar() {
url = "https://explorer.testnet.z.cash/tx/" + txid;
}
else {
url = "https://explorer.pirate.black/tx/" + txid;
url = "https://explorer.myhush.org/tx/" + txid;
}
QDesktopServices::openUrl(QUrl(url));
});
Expand Down Expand Up @@ -1093,7 +1093,7 @@ void MainWindow::setupBalancesTab() {
if (Settings::getInstance()->isTestnet()) {
url = "https://explorer.testnet.z.cash/address/" + addr;
} else {
url = "https://explorer.pirate.black/address/" + addr;
url = "https://explorer.myhush.org/address/" + addr;
}
QDesktopServices::openUrl(QUrl(url));
});
Expand Down Expand Up @@ -1159,7 +1159,7 @@ void MainWindow::setupTransactionsTab() {
if (Settings::getInstance()->isTestnet()) {
url = "https://explorer.testnet.z.cash/tx/" + txid;
} else {
url = "https://explorer.pirate.black/tx/" + txid;
url = "https://explorer.myhush.org/tx/" + txid;
}
QDesktopServices::openUrl(QUrl(url));
});
Expand Down
7 changes: 2 additions & 5 deletions src/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@
<item>
<widget class="QGroupBox" name="groupBox_6">
<property name="title">
<string></string>
<string>Address Type</string>
</property>
<property name="flat">
<bool>false</bool>
Expand All @@ -686,10 +686,7 @@
</item>
<item>
<widget class="QRadioButton" name="rdioTAddr">
<property name="visible">
<bool>false</bool>
</property>
<property name="sizePolicy">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define APP_VERSION "0.7.5"
#define APP_VERSION "0.7.6"

0 comments on commit 4c89aae

Please sign in to comment.