wallet config should default to mainnet (#2478)

This commit is contained in:
Antioch Peverell 2019-01-28 09:52:48 +00:00 committed by GitHub
parent 92cbfa20a6
commit 6d041a949b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()),