Skip to content

Commit

Permalink
Update fields order in config as toml requires it. Array must be last
Browse files Browse the repository at this point in the history
  • Loading branch information
bayk committed May 14, 2021
1 parent 90288fc commit 4ca7ffc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc713"
version = "4.3.0"
version = "4.3.1"
authors = ["vault713 devs"]
description = "A wallet that makes it easy to send, store, and swap MWC."
keywords = [ "grin", "mimblewimble", "rust", "crypto", "cryptocurrency" ]
Expand Down
6 changes: 3 additions & 3 deletions src/common/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ pub struct Wallet713Config {
// Wallet state update frequency. In none, no updates will be run in the background.
pub wallet_updater_frequency_sec: Option<u32>,

// Log filename for tor
pub tor_log_file: Option<String>,

/// Electrum nodes for secondary coins
/// Key: <coin>_[main|test]_[1|2]
/// Value: url
pub swap_electrumx_addr: Option<BTreeMap<String,String>>,

// Log filename for tor
pub tor_log_file: Option<String>,
}

pub const WALLET713_CONFIG_HELP: &str =
Expand Down

0 comments on commit 4ca7ffc

Please sign in to comment.