From aa7447675fabc22ae6a9c47b3b11f963a8b0a9c1 Mon Sep 17 00:00:00 2001 From: chimp1984 Date: Thu, 26 Nov 2020 11:45:51 -0500 Subject: [PATCH] Temp remove filter deviation check --- .../core/network/p2p/inventory/model/InventoryItem.java | 7 +++++-- .../bisq/core/network/p2p/inventory/model/RequestInfo.java | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/bisq/core/network/p2p/inventory/model/InventoryItem.java b/core/src/main/java/bisq/core/network/p2p/inventory/model/InventoryItem.java index bcdd0d2b4f9..980a9889bf2 100644 --- a/core/src/main/java/bisq/core/network/p2p/inventory/model/InventoryItem.java +++ b/core/src/main/java/bisq/core/network/p2p/inventory/model/InventoryItem.java @@ -50,9 +50,12 @@ public enum InventoryItem { Alert("Alert", true, new DeviationByIntegerDiff(1, 1), 2), + // Deactivate filter check as we have too many filters online by a mistake should be cleaned up in a few days after 1.5. Filter("Filter", - true, - new DeviationByIntegerDiff(1, 1), 2), + true), + /* Filter("Filter", + true, + new DeviationByIntegerDiff(1, 1), 2),*/ Mediator("Mediator", true, new DeviationByIntegerDiff(1, 1), 2), diff --git a/core/src/main/java/bisq/core/network/p2p/inventory/model/RequestInfo.java b/core/src/main/java/bisq/core/network/p2p/inventory/model/RequestInfo.java index 5bccb8998f3..71c15e1fa93 100644 --- a/core/src/main/java/bisq/core/network/p2p/inventory/model/RequestInfo.java +++ b/core/src/main/java/bisq/core/network/p2p/inventory/model/RequestInfo.java @@ -29,7 +29,7 @@ @Getter public class RequestInfo { // Carries latest commit hash of feature changes (not latest commit as that is then the commit for editing that field) - public static final String COMMIT_HASH = "7f83d1b3"; + public static final String COMMIT_HASH = "b67c5e90"; private final long requestStartTime; @Setter