mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Use Bisq instead of bisq
This commit is contained in:
parent
e51a1c4372
commit
45720486b2
@ -60,7 +60,7 @@ public class BisqEnvironment extends StandardEnvironment {
|
||||
DEFAULT_APP_NAME = defaultAppName;
|
||||
}
|
||||
|
||||
public static String DEFAULT_APP_NAME = "bisq";
|
||||
public static String DEFAULT_APP_NAME = "Bisq";
|
||||
|
||||
public static final String DEFAULT_USER_DATA_DIR = defaultUserDataDir();
|
||||
public static final String DEFAULT_APP_DATA_DIR = appDataDir(DEFAULT_USER_DATA_DIR, DEFAULT_APP_NAME);
|
||||
|
@ -32,7 +32,7 @@ public final class PreferencesPayload implements PersistableEnvelope {
|
||||
private List<CryptoCurrency> cryptoCurrencies = new ArrayList<>();
|
||||
private BlockChainExplorer blockChainExplorerMainNet;
|
||||
private BlockChainExplorer blockChainExplorerTestNet;
|
||||
private BlockChainExplorer bsqBlockChainExplorer = new BlockChainExplorer("bisq", "https://explorer.bisq.io/tx.html?tx=",
|
||||
private BlockChainExplorer bsqBlockChainExplorer = new BlockChainExplorer("BSQ", "https://explorer.bisq.io/tx.html?tx=",
|
||||
"https://explorer.bisq.io/Address.html?addr=");
|
||||
@Nullable
|
||||
private String backupDirectory;
|
||||
|
@ -122,7 +122,7 @@ public class BisqApp extends Application {
|
||||
public void start(Stage stage) throws IOException {
|
||||
BisqApp.primaryStage = stage;
|
||||
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
|
||||
Log.setup(logPath);
|
||||
log.info("Log files under: " + logPath);
|
||||
Utilities.printSysInfo();
|
||||
|
@ -44,7 +44,7 @@ public class SeedNode {
|
||||
private final AppSetup appSetup;
|
||||
|
||||
public SeedNode() {
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
|
||||
Log.setup(logPath);
|
||||
log.info("Log files under: " + logPath);
|
||||
Utilities.printSysInfo();
|
||||
|
@ -52,7 +52,7 @@ public class Statistics {
|
||||
private final AppSetup appSetup;
|
||||
|
||||
public Statistics() {
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
|
||||
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
|
||||
Log.setup(logPath);
|
||||
log.info("Log files under: " + logPath);
|
||||
Utilities.printSysInfo();
|
||||
|
Loading…
Reference in New Issue
Block a user