Skip to content

Commit 5766a99

Browse files
committed
feat: lintfix
1 parent 6d0a23c commit 5766a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/catalyst-types/src/hashes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ mod tests {
188188
let data = b"Cardano";
189189
let hash = Blake2b224Hash::new(data);
190190

191-
let as_vec: Vec<u8> = hash.clone().into();
191+
let as_vec: Vec<u8> = hash.into();
192192
let from_vec = Blake2b224Hash::try_from(&as_vec).unwrap();
193193
assert_eq!(hash, from_vec);
194194

0 commit comments

Comments
 (0)