Skip to content

Commit 5c7df17

Browse files
authored
chore(clippy): smol clippy fix (paradigmxyz#14145)
1 parent 7da6d67 commit 5c7df17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/net/dns/src/tree.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl BranchEntry {
203203
n * 5 / 8
204204
}
205205

206-
let decoded_len = base32_no_padding_decoded_len(hash.bytes().len());
206+
let decoded_len = base32_no_padding_decoded_len(hash.len());
207207
if !(12..=32).contains(&decoded_len) || hash.chars().any(|c| c.is_whitespace()) {
208208
return Err(ParseDnsEntryError::InvalidChildHash(hash.to_string()))
209209
}

0 commit comments

Comments
 (0)