Skip to content

Commit

Permalink
Fix clippy lints from #26
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Jun 20, 2024
1 parent 6b8cce9 commit 174c9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub(crate) fn init_wallet_config<P: AsRef<Path>>(
let config = WalletConfig {
mnemonic: Some(mnemonic.phrase().to_string()),
network: Some(network.name().to_string()),
birthday: Some(u32::from(birthday)),
birthday: Some(birthday),
};

let config_str = toml::to_string(&config)
Expand Down

0 comments on commit 174c9a9

Please sign in to comment.