Rename NU5 to Nu5 to appease newly stable clippy::upper-case-acronyms (#1945)
This commit is contained in:
parent
c95716e246
commit
c5bad9fac2
|
|
@ -55,7 +55,7 @@ impl RootHash {
|
||||||
ChainHistoryActivationReserved(bytes)
|
ChainHistoryActivationReserved(bytes)
|
||||||
}
|
}
|
||||||
Heartwood | Canopy => ChainHistoryRoot(ChainHistoryMmrRootHash(bytes)),
|
Heartwood | Canopy => ChainHistoryRoot(ChainHistoryMmrRootHash(bytes)),
|
||||||
NU5 => unimplemented!("NU5 uses hashAuthDataRoot as specified in ZIP-244"),
|
Nu5 => unimplemented!("Nu5 uses hashAuthDataRoot as specified in ZIP-244"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,8 +40,8 @@ pub enum NetworkUpgrade {
|
||||||
/// The Zcash protocol after the NU5 upgrade.
|
/// The Zcash protocol after the NU5 upgrade.
|
||||||
///
|
///
|
||||||
/// Note: Network Upgrade 5 includes the Orchard Shielded Protocol, and
|
/// Note: Network Upgrade 5 includes the Orchard Shielded Protocol, and
|
||||||
/// other changes. The NU5 code name has not been chosen yet.
|
/// other changes. The Nu5 code name has not been chosen yet.
|
||||||
NU5,
|
Nu5,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Mainnet network upgrade activation heights.
|
/// Mainnet network upgrade activation heights.
|
||||||
|
|
@ -101,7 +101,7 @@ pub(crate) const CONSENSUS_BRANCH_IDS: &[(NetworkUpgrade, ConsensusBranchId)] =
|
||||||
(Blossom, ConsensusBranchId(0x2bb40e60)),
|
(Blossom, ConsensusBranchId(0x2bb40e60)),
|
||||||
(Heartwood, ConsensusBranchId(0xf5b9230b)),
|
(Heartwood, ConsensusBranchId(0xf5b9230b)),
|
||||||
(Canopy, ConsensusBranchId(0xe9ff75a6)),
|
(Canopy, ConsensusBranchId(0xe9ff75a6)),
|
||||||
(NU5, ConsensusBranchId(0xf919a198)),
|
(Nu5, ConsensusBranchId(0xf919a198)),
|
||||||
];
|
];
|
||||||
|
|
||||||
/// The target block spacing before Blossom.
|
/// The target block spacing before Blossom.
|
||||||
|
|
@ -207,7 +207,7 @@ impl NetworkUpgrade {
|
||||||
pub fn target_spacing(&self) -> Duration {
|
pub fn target_spacing(&self) -> Duration {
|
||||||
let spacing_seconds = match self {
|
let spacing_seconds = match self {
|
||||||
Genesis | BeforeOverwinter | Overwinter | Sapling => PRE_BLOSSOM_POW_TARGET_SPACING,
|
Genesis | BeforeOverwinter | Overwinter | Sapling => PRE_BLOSSOM_POW_TARGET_SPACING,
|
||||||
Blossom | Heartwood | Canopy | NU5 => POST_BLOSSOM_POW_TARGET_SPACING,
|
Blossom | Heartwood | Canopy | Nu5 => POST_BLOSSOM_POW_TARGET_SPACING,
|
||||||
};
|
};
|
||||||
|
|
||||||
Duration::seconds(spacing_seconds)
|
Duration::seconds(spacing_seconds)
|
||||||
|
|
|
||||||
|
|
@ -256,7 +256,7 @@ impl Arbitrary for Transaction {
|
||||||
NetworkUpgrade::Blossom | NetworkUpgrade::Heartwood | NetworkUpgrade::Canopy => {
|
NetworkUpgrade::Blossom | NetworkUpgrade::Heartwood | NetworkUpgrade::Canopy => {
|
||||||
Self::v4_strategy(ledger_state)
|
Self::v4_strategy(ledger_state)
|
||||||
}
|
}
|
||||||
NetworkUpgrade::NU5 => prop_oneof![
|
NetworkUpgrade::Nu5 => prop_oneof![
|
||||||
Self::v4_strategy(ledger_state),
|
Self::v4_strategy(ledger_state),
|
||||||
Self::v5_strategy(ledger_state)
|
Self::v5_strategy(ledger_state)
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -85,8 +85,8 @@ impl<'a> SigHasher<'a> {
|
||||||
Sapling | Blossom | Heartwood | Canopy => self
|
Sapling | Blossom | Heartwood | Canopy => self
|
||||||
.hash_sighash_zip243(&mut hash)
|
.hash_sighash_zip243(&mut hash)
|
||||||
.expect("serialization into hasher never fails"),
|
.expect("serialization into hasher never fails"),
|
||||||
NU5 => unimplemented!(
|
Nu5 => unimplemented!(
|
||||||
"NU5 upgrade uses a new transaction digest algorithm, as specified in ZIP-244"
|
"Nu5 upgrade uses a new transaction digest algorithm, as specified in ZIP-244"
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,8 +57,8 @@ impl Version {
|
||||||
(Mainnet, Heartwood) => 170_011,
|
(Mainnet, Heartwood) => 170_011,
|
||||||
(Testnet, Canopy) => 170_012,
|
(Testnet, Canopy) => 170_012,
|
||||||
(Mainnet, Canopy) => 170_013,
|
(Mainnet, Canopy) => 170_013,
|
||||||
(Testnet, NU5) => 170_014,
|
(Testnet, Nu5) => 170_014,
|
||||||
(Mainnet, NU5) => 170_015,
|
(Mainnet, Nu5) => 170_015,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -189,7 +189,7 @@ mod test {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
|
||||||
let highest_network_upgrade = NetworkUpgrade::current(network, block::Height::MAX);
|
let highest_network_upgrade = NetworkUpgrade::current(network, block::Height::MAX);
|
||||||
assert!(highest_network_upgrade == NU5 || highest_network_upgrade == Canopy,
|
assert!(highest_network_upgrade == Nu5 || highest_network_upgrade == Canopy,
|
||||||
"expected coverage of all network upgrades: add the new network upgrade to the list in this test");
|
"expected coverage of all network upgrades: add the new network upgrade to the list in this test");
|
||||||
|
|
||||||
for &network_upgrade in &[
|
for &network_upgrade in &[
|
||||||
|
|
@ -199,7 +199,7 @@ mod test {
|
||||||
Blossom,
|
Blossom,
|
||||||
Heartwood,
|
Heartwood,
|
||||||
Canopy,
|
Canopy,
|
||||||
NU5,
|
Nu5,
|
||||||
] {
|
] {
|
||||||
let height = network_upgrade.activation_height(network);
|
let height = network_upgrade.activation_height(network);
|
||||||
if let Some(height) = height {
|
if let Some(height) = height {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue