Skip to content

Commit

Permalink
Remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
mb1896 committed Mar 24, 2024
1 parent 1234d64 commit 501c70f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion fendermint/app/options/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ pub fn parse_address(s: &str) -> Result<Address, String> {
}

pub fn parse_signer_addr(s: &str) -> Result<SignerAddr, String> {
println!("jiejie: Try parsing input address: {:?}", s);
Address::from_str(s)
.map(SignerAddr)
.map_err(|e| format!("error parsing addresses: {e}"))
Expand Down
5 changes: 0 additions & 5 deletions fendermint/app/src/cmd/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,6 @@ fn set_eam_permissions(
genesis_file: &PathBuf,
args: &GenesisSetEAMPermissionsArgs,
) -> anyhow::Result<()> {
println!("jiejie: Enter");
let temp_addresses = args.addresses.clone();
for addr in temp_addresses {
println!("jiejie: Input addr: {:?}", addr);
}
update_genesis(genesis_file, |mut genesis| {
genesis.eam_permission_mode = match args.mode.to_lowercase().as_str() {
"unrestricted" => PermissionMode::Unrestricted,
Expand Down

0 comments on commit 501c70f

Please sign in to comment.