Skip to content

Commit

Permalink
zcash_address: Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Jun 6, 2021
1 parent 1590565 commit af02e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/zcash_address/src/kind/unified.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl Address {
iter::empty()
.chain(Some(receiver.typecode()))
.chain(Some(addr.len() as u8))
.chain(addr.into_iter().cloned())
.chain(addr.iter().cloned())
})
.chain(iter::repeat(0).take(PADDING_LEN))
.collect();
Expand Down

0 comments on commit af02e11

Please sign in to comment.