From 9b4d832d17a8b96f395daa6cc98944a68b54f4fa Mon Sep 17 00:00:00 2001 From: CalDescent Date: Wed, 1 Sep 2021 09:11:50 +0100 Subject: [PATCH] Default minPeerVersion set to 0.1.0. TODO: revert this if ever merged into the main repo. --- src/main/java/org/qortal/settings/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/qortal/settings/Settings.java b/src/main/java/org/qortal/settings/Settings.java index 49a8a42c..230ead8a 100644 --- a/src/main/java/org/qortal/settings/Settings.java +++ b/src/main/java/org/qortal/settings/Settings.java @@ -139,7 +139,7 @@ public class Settings { private int maxRetries = 2; /** Minimum peer version number required in order to sync with them */ - private String minPeerVersion = "1.5.0"; + private String minPeerVersion = "0.1.0"; /** Whether to allow connections with peers below minPeerVersion * If true, we won't sync with them but they can still sync with us, and will show in the peers list * If false, sync will be blocked both ways, and they will not appear in the peers list */