Skip to content

Commit

Permalink
Remove emzy bsq explorer from BSQ_MAIN_NET_EXPLORERS.
Browse files Browse the repository at this point in the history
Remove that entyr if it was used as persisted explorer.

Signed-off-by: HenrikJannsen <[email protected]>
  • Loading branch information
HenrikJannsen committed Jul 23, 2024
1 parent 2e25342 commit b10e033
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions core/src/main/java/bisq/core/app/BisqSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,10 @@ private void maybeUpgradeBsqExplorerUrl() {
preferences.getBsqBlockChainExplorers().size() > 0) {
preferences.setBsqBlockChainExplorer(preferences.getBsqBlockChainExplorers().get(0));
}
if (preferences.getBsqBlockChainExplorer().name.equalsIgnoreCase("bisq.mempool.emzy.de (@emzy)") &&
preferences.getBsqBlockChainExplorers().size() > 0) {
preferences.setBsqBlockChainExplorer(preferences.getBsqBlockChainExplorers().get(0));
}
}

private void maybeShowTorAddressUpgradeInformation() {
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/bisq/core/user/Preferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public final class Preferences implements PersistedDataHost, BridgeAddressProvid
));

public static final ArrayList<BlockChainExplorer> BSQ_MAIN_NET_EXPLORERS = new ArrayList<>(Arrays.asList(
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/")
));

Expand Down

0 comments on commit b10e033

Please sign in to comment.