Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
PFC-developer committed Oct 6, 2021
1 parent c649a1a commit 24b359c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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 = "terra-rust"
version = "1.0.3-alpha.0"
version = "1.0.4"
authors = ["PFC-Validator <PFC-Validator@protonmail.com>"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion terra-rust-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terra-rust-wallet"
version = "1.0.2"
version = "1.0.3"
authors = ["PFC-Validator <PFC-Validator@protonmail.com>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion terra-rust-wallet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl<'a> Wallet<'a> {
let full_key_name = self.full_key_name(key_name);
let keyring = keyring::Keyring::new(self.name, &full_key_name);
let phrase = &keyring.get_password().map_err(KeyringErrorAdapter::from)?;
log::info!("{}", phrase);
// log::info!("{}", phrase);
match seed {
None => Ok(PrivateKey::from_words(secp, phrase)?),
Some(seed_str) => Ok(PrivateKey::from_words_seed(secp, phrase, seed_str)?),
Expand Down

0 comments on commit 24b359c

Please sign in to comment.