diff --git a/core/src/main/java/bisq/core/arbitration/ArbitratorManager.java b/core/src/main/java/bisq/core/arbitration/ArbitratorManager.java index 5ce57b393e..f9809d6c48 100644 --- a/core/src/main/java/bisq/core/arbitration/ArbitratorManager.java +++ b/core/src/main/java/bisq/core/arbitration/ArbitratorManager.java @@ -236,6 +236,8 @@ public class ArbitratorManager { user.addAcceptedMediator(getMediator(a) ); }); + + log.info("Available arbitrators: {}", arbitratorsObservableMap.keySet()); } // TODO we mirror arbitrator data for mediator as long we have not impl. it in the UI diff --git a/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java b/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java index e59d6bb271..54ee30b4e9 100644 --- a/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java +++ b/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java @@ -50,7 +50,7 @@ public class ArbitratorSelection { static { try { //TODO set activation data to 1 month after release - Date activationDate = new SimpleDateFormat("dd/MM/yyyy").parse("1/10/2018"); + Date activationDate = new SimpleDateFormat("dd/MM/yyyy").parse("20/11/2018"); isNewRuleActivated = new Date().after(activationDate); } catch (ParseException e) { e.printStackTrace();