From 82f8cf6d40fbc5389523a49fddff97e3ab64f895 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 6 Sep 2020 18:36:32 +0900 Subject: [PATCH 1/2] Add new Monero Explorer node77.monero.wiz.biz with onion --- core/src/main/java/bisq/core/user/Preferences.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/bisq/core/user/Preferences.java b/core/src/main/java/bisq/core/user/Preferences.java index f4ef6285e0e..624e8c14809 100644 --- a/core/src/main/java/bisq/core/user/Preferences.java +++ b/core/src/main/java/bisq/core/user/Preferences.java @@ -123,12 +123,14 @@ public final class Preferences implements PersistedDataHost, BridgeAddressProvid new BlockChainExplorer("bsq.bisq.cc (@m52go)", "https://bsq.bisq.cc/tx.html?tx=", "https://bsq.bisq.cc/Address.html?addr=") )); - //TODO add a second before release private static final ArrayList XMR_TX_PROOF_SERVICES_CLEAR_NET = new ArrayList<>(Arrays.asList( - "78.47.61.90:8081")); - //TODO add a second before release + "78.47.61.90:8081", // @emzy + "node77.monero.wiz.biz" // @wiz + )); private static final ArrayList XMR_TX_PROOF_SERVICES = new ArrayList<>(Arrays.asList( - "monero3bec7m26vx6si6qo7q7imlaoz45ot5m2b5z2ppgoooo6jx2rqd.onion")); + "monero3bec7m26vx6si6qo7q7imlaoz45ot5m2b5z2ppgoooo6jx2rqd.onion", // @emzy + "wizxmr4hbdxdszqm5rfyqvceyca5jq62ppvtuznasnk66wvhhvgm3uyd.onion", // @wiz + )); public static final boolean USE_SYMMETRIC_SECURITY_DEPOSIT = true; From 4b9a1a0138350323e6752650c2d238a8092a93c5 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 7 Sep 2020 00:46:06 +0900 Subject: [PATCH 2/2] Fix compile error in core/src/main/java/bisq/core/user/Preferences.java --- core/src/main/java/bisq/core/user/Preferences.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/bisq/core/user/Preferences.java b/core/src/main/java/bisq/core/user/Preferences.java index 624e8c14809..4ae7eba6409 100644 --- a/core/src/main/java/bisq/core/user/Preferences.java +++ b/core/src/main/java/bisq/core/user/Preferences.java @@ -129,7 +129,7 @@ public final class Preferences implements PersistedDataHost, BridgeAddressProvid )); private static final ArrayList XMR_TX_PROOF_SERVICES = new ArrayList<>(Arrays.asList( "monero3bec7m26vx6si6qo7q7imlaoz45ot5m2b5z2ppgoooo6jx2rqd.onion", // @emzy - "wizxmr4hbdxdszqm5rfyqvceyca5jq62ppvtuznasnk66wvhhvgm3uyd.onion", // @wiz + "wizxmr4hbdxdszqm5rfyqvceyca5jq62ppvtuznasnk66wvhhvgm3uyd.onion" // @wiz )); public static final boolean USE_SYMMETRIC_SECURITY_DEPOSIT = true;