Skip to content

Commit

Permalink
Fix a clippy::collapsible_match lint (#2642)
Browse files Browse the repository at this point in the history
We don't use the suggestion here, because it's actually wrong.
See rust-lang/rust-clippy#7575
  • Loading branch information
teor2345 authored Aug 19, 2021
1 parent c608260 commit 6a84094
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions zebra-consensus/src/transaction/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,15 @@ fn v5_fake_transactions() -> Result<(), Report> {
check::coinbase_tx_no_prevout_joinsplit_spend(&transaction)?;

// validate the sapling shielded data
match transaction {
Transaction::V5 {
sapling_shielded_data,
..
} => {
if let Some(s) = sapling_shielded_data {
for spend in s.spends_per_anchor() {
check::spend_cv_rk_not_small_order(&spend)?
}
for output in s.outputs() {
check::output_cv_epk_not_small_order(output)?;
}
}
if transaction.version() == 5 {
for spend in transaction.sapling_spends_per_anchor() {
check::spend_cv_rk_not_small_order(&spend)?;
}
_ => panic!("we should have no tx other than 5"),
for output in transaction.sapling_outputs() {
check::output_cv_epk_not_small_order(output)?;
}
} else {
panic!("we should have no tx other than 5");
}
}
}
Expand Down

0 comments on commit 6a84094

Please sign in to comment.