Skip to content

Commit af02e11

Browse files
committed
zcash_address: Fix clippy lint
1 parent 1590565 commit af02e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/zcash_address/src/kind/unified.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl Address {
131131
iter::empty()
132132
.chain(Some(receiver.typecode()))
133133
.chain(Some(addr.len() as u8))
134-
.chain(addr.into_iter().cloned())
134+
.chain(addr.iter().cloned())
135135
})
136136
.chain(iter::repeat(0).take(PADDING_LEN))
137137
.collect();

0 commit comments

Comments
 (0)