Skip to content

Commit 8719910

Browse files
committed
update explorer URL; change version to 1.1.5.2
1 parent fc0143c commit 8719910

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/java/com/vaklinov/zcashui/SendCashPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ private void reportCompleteOperationToTheUser(String amount, String sourceAddres
741741
// Open block explorer
742742
Log.info("Transaction ID for block explorer is: " + TXID);
743743
// TODO: code duplication with transactions table
744-
String urlPrefix = "https://explorer.mybtczwallet.org/tx/";
744+
String urlPrefix = "https://explorer.btcz.rocks/tx/";
745745
if (installationObserver.isOnTestNet())
746746
{
747747
urlPrefix = "https://explorer-testnet.zen-solutions.io/tx/";

src/java/com/vaklinov/zcashui/TransactionTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void actionPerformed(ActionEvent e)
127127

128128
Log.info("Transaction ID for block explorer is: " + txID);
129129
// https://explorer.zcha.in/transactions/<ID>
130-
String urlPrefix = "https://explorer.mybtczwallet.org/tx/";
130+
String urlPrefix = "https://explorer.btcz.rocks/tx/";
131131
if (installationObserver.isOnTestNet())
132132
{
133133
urlPrefix = "https://na";

src/java/com/vaklinov/zcashui/ZCashUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class ZCashUI
108108
public ZCashUI(StartupProgressDialog progressDialog)
109109
throws IOException, InterruptedException, WalletCallException
110110
{
111-
super("BitcoinZ Wallet 1.1.0.4");
111+
super("BitcoinZ Wallet 1.1.5.2");
112112

113113
if (progressDialog != null)
114114
{

0 commit comments

Comments
 (0)