mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
wallet config should default to mainnet (#2478)
This commit is contained in:
parent
92cbfa20a6
commit
6d041a949b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ pub struct WalletConfig {
|
||||||
impl Default for WalletConfig {
|
impl Default for WalletConfig {
|
||||||
fn default() -> WalletConfig {
|
fn default() -> WalletConfig {
|
||||||
WalletConfig {
|
WalletConfig {
|
||||||
chain_type: Some(ChainTypes::Floonet),
|
chain_type: Some(ChainTypes::Mainnet),
|
||||||
api_listen_interface: "127.0.0.1".to_string(),
|
api_listen_interface: "127.0.0.1".to_string(),
|
||||||
api_listen_port: 3415,
|
api_listen_port: 3415,
|
||||||
api_secret_path: Some(".api_secret".to_string()),
|
api_secret_path: Some(".api_secret".to_string()),
|
||||||
|
|
Loading…
Reference in a new issue