From 68731b0f9fd0fafa7381ec78f7fff43f2aecf15d Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 30 Sep 2019 11:39:06 -0700 Subject: [PATCH] Switch to mainnet by default --- src/lightclient.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lightclient.rs b/src/lightclient.rs index 9666bff..f21d142 100644 --- a/src/lightclient.rs +++ b/src/lightclient.rs @@ -40,7 +40,7 @@ use crate::grpc_client::client::CompactTxStreamer; // Used below to return the grpc "Client" type to calling methods -pub const DEFAULT_SERVER: &str = "https://lightd-test.zecwallet.co:443"; +pub const DEFAULT_SERVER: &str = "https://lightd-main.zecwallet.co:443"; pub const WALLET_NAME: &str = "zeclite.wallet.dat"; pub const LOGFILE_NAME: &str = "zeclite.debug.log";