Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykoren committed Jun 27, 2024
1 parent 9973a77 commit e49ee6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion components/zcash_protocol/src/consensus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down
2 changes: 1 addition & 1 deletion zcash_primitives/src/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ impl<A: Authorization> TransactionData<A> {
mut f_sapling: impl sapling_serialization::MapAuth<A::SaplingAuth, B::SaplingAuth>,
mut f_orchard: impl orchard_serialization::MapAuth<A::OrchardAuth, B::OrchardAuth>,
#[cfg(zcash_unstable = "nu6")]
/* TODO nu7 */
/* TODO nu7 */
mut f_orchard_zsa: impl orchard_serialization::MapAuth<
A::OrchardZsaAuth,
B::OrchardZsaAuth,
Expand Down

0 comments on commit e49ee6a

Please sign in to comment.