mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Update version nr for seed, provider and statistic nodes. Cleanup
This commit is contained in:
parent
9f775f2cae
commit
510147822f
@ -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";
|
||||
|
@ -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"),
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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";
|
||||
}
|
||||
|
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user