Update version nr for seed, provider and statistic nodes. Cleanup

This commit is contained in:
Manfred Karrer 2017-12-20 03:27:19 +01:00
parent 9f775f2cae
commit 510147822f
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
7 changed files with 4 additions and 12 deletions

View File

@ -272,7 +272,7 @@ public class BisqEnvironment extends StandardEnvironment {
"Bisq";
useAllProvidedNodes = commandLineProperties.containsProperty(BtcOptionKeys.USE_ALL_PROVIDED_NODES) ?
(String) commandLineProperties.getProperty(BtcOptionKeys.USE_ALL_PROVIDED_NODES) :
"";
"false";
numConnectionForBtc = commandLineProperties.containsProperty(BtcOptionKeys.NUM_CONNECTIONS_FOR_BTC) ?
(String) commandLineProperties.getProperty(BtcOptionKeys.NUM_CONNECTIONS_FOR_BTC) :
"9";

View File

@ -94,7 +94,6 @@ public class CoreSeedNodesRepository implements SeedNodesRepository {
new NodeAddress("rm7b56wbrcczpjvl.onion:8000"), // @manfredkarrer
new NodeAddress("fl3mmribyxgrv63c.onion:8000"), // @manfredkarrer
//TODO dev
// local dev
// new NodeAddress("joehwtpe7ijnz4df.onion:8000"),
// new NodeAddress("uqxi3zrpobhtoes6.onion:8000"),

View File

@ -68,9 +68,7 @@ public class OpenOfferManager implements PeerManager.Listener, DecryptedDirectMe
private static final long RETRY_REPUBLISH_DELAY_SEC = 10;
private static final long REPUBLISH_AGAIN_AT_STARTUP_DELAY_SEC = 30;
@SuppressWarnings("ConstantConditions")
private static final long REPUBLISH_INTERVAL_MS = TimeUnit.MINUTES.toMillis(30);
@SuppressWarnings("ConstantConditions")
private static final long REFRESH_INTERVAL_MS = TimeUnit.MINUTES.toMillis(5);
private final KeyRing keyRing;

View File

@ -6,16 +6,12 @@ import javafx.beans.property.IntegerProperty;
import javafx.beans.property.LongProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleLongProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Date;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class Statistic {
private static final Logger log = LoggerFactory.getLogger(Statistic.class);
///////////////////////////////////////////////////////////////////////////////////////////
// Static

View File

@ -18,5 +18,5 @@
package io.bisq.provider;
public class ProviderVersion {
public static final String VERSION = "0.6.3";
public static final String VERSION = "0.6.4";
}

View File

@ -37,7 +37,7 @@ import java.util.Arrays;
@Slf4j
public class SeedNode {
public static final String VERSION = "0.6.2";
public static final String VERSION = "0.6.3";
private static BisqEnvironment bisqEnvironment;
public static void setEnvironment(BisqEnvironment bisqEnvironment) {

View File

@ -41,8 +41,7 @@ import java.util.Arrays;
@Slf4j
public class Statistics {
// Bisq v0.6.1 did not change anything relevant for that project so we stick with 0.6.0
public static final String VERSION = "0.6.0";
public static final String VERSION = "0.6.1";
private static BisqEnvironment bisqEnvironment;
public static void setEnvironment(BisqEnvironment bisqEnvironment) {