Skip to content

Commit

Permalink
Merge pull request mimblewimble#2517 from cyclefortytwo/fix_data_dir_…
Browse files Browse the repository at this point in the history
…flag

fix wallet --data-dir flag
  • Loading branch information
hashmap authored Feb 5, 2019
2 parents c1d67cb + c79bbd4 commit 4eba13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/cmd/wallet_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ pub fn wallet_command(
wallet_config.api_listen_interface = "0.0.0.0".to_string();
}

if let Some(dir) = wallet_args.value_of("dir") {
if let Some(dir) = wallet_args.value_of("data_dir") {
wallet_config.data_file_dir = dir.to_string().clone();
}

Expand Down

0 comments on commit 4eba13a

Please sign in to comment.