From 107731b88477c6bdf9cc40b92f132a21ea7d6497 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Wed, 19 Nov 2014 15:07:17 +0100 Subject: [PATCH] Use biteasy testnet as link for tx explorer --- src/main/java/io/bitsquare/gui/components/TxIdTextField.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/io/bitsquare/gui/components/TxIdTextField.java b/src/main/java/io/bitsquare/gui/components/TxIdTextField.java index 8364abdcae..8bad91e2ed 100644 --- a/src/main/java/io/bitsquare/gui/components/TxIdTextField.java +++ b/src/main/java/io/bitsquare/gui/components/TxIdTextField.java @@ -95,7 +95,8 @@ public class TxIdTextField extends AnchorPane { textField.setOnMouseClicked(mouseEvent -> { try { // TODO get the url form the app preferences - Utilities.openURL("https://blockchain.info/tx/" + txID); + Utilities.openURL("https://www.biteasy.com/testnet/transactions/" + txID); + //Utilities.openURL("https://blockchain.info/tx/" + txID); } catch (Exception e) { log.warn(e.getMessage()); Popups.openWarningPopup("Warning", "Opening blockchain.info failed. Please check your internet " +