Skip to content

Commit

Permalink
Merge pull request #317 from Traevelliath/main
Browse files Browse the repository at this point in the history
fix: remove debug logging from anychain_tron
  • Loading branch information
loki-cmu authored Jan 13, 2025
2 parents ffc1cad + e0b8f3a commit 9c7a577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/anychain-tron/src/address.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl FromStr for TronAddress {
} else if s == "_" || s == "0x0" || s == "/0" {
"410000000000000000000000000000000000000000".parse()
} else {
eprintln!("len={} prefix={:x}", s.len(), s.as_bytes()[0]);
// eprintln!("len={} prefix={:x}", s.len(), s.as_bytes()[0]);
Err(AddressError::InvalidAddress("Invalid length".to_string()))
}
}
Expand Down

0 comments on commit 9c7a577

Please sign in to comment.