Skip to content

Commit

Permalink
Merge pull request #42 from cryptorex/master
Browse files Browse the repository at this point in the history
update explorer URL; change version to 1.1.5.2
  • Loading branch information
cryptorex authored Apr 9, 2018
2 parents fc0143c + 8719910 commit 9f8a501
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/SendCashPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ private void reportCompleteOperationToTheUser(String amount, String sourceAddres
// Open block explorer
Log.info("Transaction ID for block explorer is: " + TXID);
// TODO: code duplication with transactions table
String urlPrefix = "https://explorer.mybtczwallet.org/tx/";
String urlPrefix = "https://explorer.btcz.rocks/tx/";
if (installationObserver.isOnTestNet())
{
urlPrefix = "https://explorer-testnet.zen-solutions.io/tx/";
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/TransactionTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void actionPerformed(ActionEvent e)

Log.info("Transaction ID for block explorer is: " + txID);
// https://explorer.zcha.in/transactions/<ID>
String urlPrefix = "https://explorer.mybtczwallet.org/tx/";
String urlPrefix = "https://explorer.btcz.rocks/tx/";
if (installationObserver.isOnTestNet())
{
urlPrefix = "https://na";
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/ZCashUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class ZCashUI
public ZCashUI(StartupProgressDialog progressDialog)
throws IOException, InterruptedException, WalletCallException
{
super("BitcoinZ Wallet 1.1.0.4");
super("BitcoinZ Wallet 1.1.5.2");

if (progressDialog != null)
{
Expand Down

0 comments on commit 9f8a501

Please sign in to comment.