Fix clippy::unused_parens (#4931)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
c76a954033
commit
e243a357f9
|
|
@ -1,6 +1,6 @@
|
||||||
//! Tests for whether cited anchors are checked properly.
|
//! Tests for whether cited anchors are checked properly.
|
||||||
|
|
||||||
use std::{convert::TryInto, ops::Deref, sync::Arc};
|
use std::{ops::Deref, sync::Arc};
|
||||||
|
|
||||||
use zebra_chain::{
|
use zebra_chain::{
|
||||||
amount::Amount,
|
amount::Amount,
|
||||||
|
|
@ -207,7 +207,7 @@ fn check_sapling_anchors() {
|
||||||
Transaction::V4 {
|
Transaction::V4 {
|
||||||
sapling_shielded_data,
|
sapling_shielded_data,
|
||||||
..
|
..
|
||||||
} => (sapling_shielded_data.clone()),
|
} => sapling_shielded_data.clone(),
|
||||||
_ => unreachable!("These are known v4 transactions"),
|
_ => unreachable!("These are known v4 transactions"),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue