Skip to content

Commit 9c7a577

Browse files
authored
Merge pull request #317 from Traevelliath/main
fix: remove debug logging from anychain_tron
2 parents ffc1cad + e0b8f3a commit 9c7a577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/anychain-tron/src/address.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ impl FromStr for TronAddress {
165165
} else if s == "_" || s == "0x0" || s == "/0" {
166166
"410000000000000000000000000000000000000000".parse()
167167
} else {
168-
eprintln!("len={} prefix={:x}", s.len(), s.as_bytes()[0]);
168+
// eprintln!("len={} prefix={:x}", s.len(), s.as_bytes()[0]);
169169
Err(AddressError::InvalidAddress("Invalid length".to_string()))
170170
}
171171
}

0 commit comments

Comments
 (0)