From 6d041a949b432c23be8bc6438c2f3eb56a0070ad Mon Sep 17 00:00:00 2001 From: Antioch Peverell Date: Mon, 28 Jan 2019 09:52:48 +0000 Subject: [PATCH] wallet config should default to mainnet (#2478) --- wallet/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/src/types.rs b/wallet/src/types.rs index f47add9d4..2c19cdb73 100644 --- a/wallet/src/types.rs +++ b/wallet/src/types.rs @@ -69,7 +69,7 @@ pub struct WalletConfig { impl Default for WalletConfig { fn default() -> WalletConfig { WalletConfig { - chain_type: Some(ChainTypes::Floonet), + chain_type: Some(ChainTypes::Mainnet), api_listen_interface: "127.0.0.1".to_string(), api_listen_port: 3415, api_secret_path: Some(".api_secret".to_string()),