Skip to content

Commit

Permalink
Change unfixed FIXMEs to TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmidem committed Feb 18, 2025
1 parent 1c26cac commit b660b63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions zebra-chain/src/parameters/network_upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub(super) const MAINNET_ACTIVATION_HEIGHTS: &[(block::Height, NetworkUpgrade)]
(block::Height(1_046_400), Canopy),
(block::Height(1_687_104), Nu5),
(block::Height(2_726_400), Nu6),
// FIXME: TODO: Use a proper value below.
// TODO: Use a proper value below.
#[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )]
(block::Height(3_111_000), Nu7),
];
Expand Down Expand Up @@ -134,7 +134,7 @@ pub(super) const TESTNET_ACTIVATION_HEIGHTS: &[(block::Height, NetworkUpgrade)]
(block::Height(1_028_500), Canopy),
(block::Height(1_842_420), Nu5),
(block::Height(2_976_000), Nu6),
// FIXME: TODO: Use a proper value below.
// TODO: Use a proper value below.
#[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )]
(block::Height(3_222_000), Nu7),
];
Expand Down Expand Up @@ -228,7 +228,7 @@ pub(crate) const CONSENSUS_BRANCH_IDS: &[(NetworkUpgrade, ConsensusBranchId)] =
(Canopy, ConsensusBranchId(0xe9ff75a6)),
(Nu5, ConsensusBranchId(0xc2d6d0b4)),
(Nu6, ConsensusBranchId(0xc8e71055)),
// FIXME: TODO: Use a proper value below.
// TODO: Use a proper value below.
#[cfg(zcash_unstable = "nu6" /* TODO nu7 */ )]
(Nu7, ConsensusBranchId(0x77777777)),
];
Expand Down
2 changes: 1 addition & 1 deletion zebra-network/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ lazy_static! {
/// Testnet network upgrades.
// TODO: Change `Nu5` to `Nu6` after NU6 activation.
// TODO: Move the value here to a field on `testnet::Parameters` (#8367)
// TODO: FIXME: Change `Nu...` to `Nu7` after NU7 activation?
// TODO: Change `Nu...` to `Nu7` after NU7 activation?
pub static ref INITIAL_MIN_NETWORK_PROTOCOL_VERSION: HashMap<NetworkKind, Version> = {
let mut hash_map = HashMap::new();

Expand Down

0 comments on commit b660b63

Please sign in to comment.