fix win and linux path for.dat and.log, change default server to hush-lightwallet.de

This commit is contained in:
DenioD
2019-11-01 12:14:32 +01:00
parent b347a1676a
commit 58878d9cd1

View File

@@ -27,7 +27,7 @@ use crate::ANCHOR_OFFSET;
mod checkpoints;
pub const DEFAULT_SERVER: &str = "https://";
pub const DEFAULT_SERVER: &str = "https://hush-lightwallet.de:443";
pub const WALLET_NAME: &str = "silentdragonlite-wallet.dat";
pub const LOGFILE_NAME: &str = "silentdragonlite-wallet.debug.log";
@@ -110,7 +110,7 @@ impl LightClientConfig {
zcash_data_location.push("silentdragonlite");
} else {
zcash_data_location = dirs::home_dir().expect("Couldn't determine home directory!");
zcash_data_location.push("silentdragonlite/");
zcash_data_location.push(".silentdragonlite");
};
match &self.chain_name[..] {