diff --git a/src/tree.rs b/src/tree.rs index 54ae76c4..71fb4c63 100644 --- a/src/tree.rs +++ b/src/tree.rs @@ -229,7 +229,10 @@ impl Hashable for OrchardIncrementalTreeDigest { } fn empty_root(altitude: Altitude) -> Self { - OrchardIncrementalTreeDigest(CtOption::new(EMPTY_ROOTS[::from(altitude)], 1.into())) + OrchardIncrementalTreeDigest(CtOption::new( + EMPTY_ROOTS[::from(altitude)], + 1.into(), + )) } }