From 6637806019bceedc5c9e3ec3718ac312cab8de18 Mon Sep 17 00:00:00 2001 From: Stephan Oeste Date: Wed, 19 Jan 2022 17:32:49 +0100 Subject: [PATCH] update hostname ob BSQ explorer The new version 2.3.0 of mempool.space supports BSQ exporer only on a separate domain. update URL to http://bisq.mempool.emzy.de/.... There is a redirect from the old location to the new one. So nothing is broken and the PR is low prio. --- 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 70eef439fb2..afcf07ab985 100644 --- a/core/src/main/java/bisq/core/user/Preferences.java +++ b/core/src/main/java/bisq/core/user/Preferences.java @@ -117,7 +117,7 @@ public final class Preferences implements PersistedDataHost, BridgeAddressProvid public static final ArrayList BSQ_MAIN_NET_EXPLORERS = new ArrayList<>(Arrays.asList( new BlockChainExplorer("mempool.space (@wiz)", "https://mempool.space/bisq/tx/", "https://mempool.space/bisq/address/"), - new BlockChainExplorer("mempool.emzy.de (@emzy)", "https://mempool.emzy.de/bisq/tx/", "https://mempool.emzy.de/bisq/address/"), + new BlockChainExplorer("bisq.mempool.emzy.de (@emzy)", "https://bisq.mempool.emzy.de/tx/", "https://bisq.mempool.emzy.de/address/"), new BlockChainExplorer("mempool.bisq.services (@devinbileck)", "https://mempool.bisq.services/bisq/tx/", "https://mempool.bisq.services/bisq/address/") ));