From e49ee6a12abcd404baea87e927da29c9569c654a Mon Sep 17 00:00:00 2001 From: alexeykoren <2365507+alexeykoren@users.noreply.github.com> Date: Thu, 27 Jun 2024 17:01:25 +0200 Subject: [PATCH] Fix fmt --- components/zcash_protocol/src/consensus.rs | 4 +++- zcash_primitives/src/transaction/mod.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/components/zcash_protocol/src/consensus.rs b/components/zcash_protocol/src/consensus.rs index b45b8e57b..8326d385a 100644 --- a/components/zcash_protocol/src/consensus.rs +++ b/components/zcash_protocol/src/consensus.rs @@ -356,7 +356,9 @@ impl Parameters for MainNetwork { NetworkUpgrade::Nu5 => Some(BlockHeight(1_687_104)), #[cfg(zcash_unstable = "nu6")] NetworkUpgrade::Nu6 => Some(BlockHeight(1_687_106)), - #[cfg(zcash_unstable = "nu6")] /* TODO nu7 */ NetworkUpgrade::Nu7 => Some(BlockHeight(1_687_107)), + #[cfg(zcash_unstable = "nu6")] /* TODO nu7 */ NetworkUpgrade::Nu7 => { + Some(BlockHeight(1_687_107)) + } #[cfg(zcash_unstable = "zfuture")] NetworkUpgrade::ZFuture => None, } diff --git a/zcash_primitives/src/transaction/mod.rs b/zcash_primitives/src/transaction/mod.rs index bd2609fb0..fd0cd42dd 100644 --- a/zcash_primitives/src/transaction/mod.rs +++ b/zcash_primitives/src/transaction/mod.rs @@ -626,7 +626,7 @@ impl TransactionData { mut f_sapling: impl sapling_serialization::MapAuth, mut f_orchard: impl orchard_serialization::MapAuth, #[cfg(zcash_unstable = "nu6")] - /* TODO nu7 */ + /* TODO nu7 */ mut f_orchard_zsa: impl orchard_serialization::MapAuth< A::OrchardZsaAuth, B::OrchardZsaAuth,