change: Set NU6 Mainnet activation height and network protocol version (#8960)
* Update docs for min network protocol versions * Add a TODO for updating init net protocol version * Update `CURRENT_NETWORK_PROTOCOL_VERSION` * Add NU6 Mainnet activation height * Extend docs for funding streams * Extend tests for Mainnet funding streams * Update snapshots
This commit is contained in:
parent
46c6b6eb38
commit
0b1562d4b6
|
@ -751,6 +751,12 @@ impl Network {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns pre-NU6 funding streams for this network
|
/// Returns pre-NU6 funding streams for this network
|
||||||
|
///
|
||||||
|
/// Commonly referred to as the "Dev Fund".
|
||||||
|
///
|
||||||
|
/// Defined in [Zcash Protocol Specification §7.10.1][7.10.1]
|
||||||
|
///
|
||||||
|
/// [7.10.1]: https://zips.z.cash/protocol/protocol.pdf#zip214fundingstreams
|
||||||
pub fn pre_nu6_funding_streams(&self) -> &FundingStreams {
|
pub fn pre_nu6_funding_streams(&self) -> &FundingStreams {
|
||||||
if let Self::Testnet(params) = self {
|
if let Self::Testnet(params) = self {
|
||||||
params.pre_nu6_funding_streams()
|
params.pre_nu6_funding_streams()
|
||||||
|
@ -760,6 +766,10 @@ impl Network {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns post-NU6 funding streams for this network
|
/// Returns post-NU6 funding streams for this network
|
||||||
|
///
|
||||||
|
/// Defined in [Zcash Protocol Specification §7.10.1][7.10.1]
|
||||||
|
///
|
||||||
|
/// [7.10.1]: https://zips.z.cash/protocol/protocol.pdf#zip214fundingstreams
|
||||||
pub fn post_nu6_funding_streams(&self) -> &FundingStreams {
|
pub fn post_nu6_funding_streams(&self) -> &FundingStreams {
|
||||||
if let Self::Testnet(params) = self {
|
if let Self::Testnet(params) = self {
|
||||||
params.post_nu6_funding_streams()
|
params.post_nu6_funding_streams()
|
||||||
|
|
|
@ -89,8 +89,7 @@ pub(super) const MAINNET_ACTIVATION_HEIGHTS: &[(block::Height, NetworkUpgrade)]
|
||||||
(block::Height(903_000), Heartwood),
|
(block::Height(903_000), Heartwood),
|
||||||
(block::Height(1_046_400), Canopy),
|
(block::Height(1_046_400), Canopy),
|
||||||
(block::Height(1_687_104), Nu5),
|
(block::Height(1_687_104), Nu5),
|
||||||
// TODO: Add NU6
|
(block::Height(2_726_400), Nu6),
|
||||||
// (block::Height(2_726_400), Nu6),
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/// Fake mainnet network upgrade activation heights, used in tests.
|
/// Fake mainnet network upgrade activation heights, used in tests.
|
||||||
|
|
|
@ -1,199 +1,86 @@
|
||||||
//! Tests for funding streams.
|
//! Tests for funding streams.
|
||||||
|
|
||||||
use color_eyre::Report;
|
use color_eyre::Report;
|
||||||
use zebra_chain::parameters::{
|
use zebra_chain::parameters::{subsidy::FundingStreamReceiver, NetworkKind};
|
||||||
subsidy::FundingStreamReceiver,
|
|
||||||
testnet::{
|
|
||||||
self, ConfiguredActivationHeights, ConfiguredFundingStreamRecipient,
|
|
||||||
ConfiguredFundingStreams,
|
|
||||||
},
|
|
||||||
NetworkKind,
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::block::subsidy::general::block_subsidy;
|
use crate::block::subsidy::general::block_subsidy;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
/// Check mainnet funding stream values are correct for the entire period.
|
/// Checks that the Mainnet funding stream values are correct.
|
||||||
#[test]
|
#[test]
|
||||||
fn test_funding_stream_values() -> Result<(), Report> {
|
fn test_funding_stream_values() -> Result<(), Report> {
|
||||||
let _init_guard = zebra_test::init();
|
let _init_guard = zebra_test::init();
|
||||||
let network = &Network::Mainnet;
|
let network = &Network::Mainnet;
|
||||||
|
|
||||||
// funding streams not active
|
let canopy_activation_height = Canopy.activation_height(network).unwrap();
|
||||||
let canopy_height_minus1 = (Canopy.activation_height(network).unwrap() - 1).unwrap();
|
let nu6_activation_height = Nu6.activation_height(network).unwrap();
|
||||||
|
|
||||||
assert!(funding_stream_values(
|
let dev_fund_height_range = network.pre_nu6_funding_streams().height_range();
|
||||||
canopy_height_minus1,
|
let nu6_fund_height_range = network.post_nu6_funding_streams().height_range();
|
||||||
network,
|
|
||||||
block_subsidy(canopy_height_minus1, network)?
|
|
||||||
)?
|
|
||||||
.is_empty());
|
|
||||||
|
|
||||||
// funding stream is active
|
let nu6_fund_end = Height(3_146_400);
|
||||||
let canopy_height = Canopy.activation_height(network).unwrap();
|
|
||||||
let canopy_height_plus1 = (Canopy.activation_height(network).unwrap() + 1).unwrap();
|
|
||||||
let canopy_height_plus2 = (Canopy.activation_height(network).unwrap() + 2).unwrap();
|
|
||||||
|
|
||||||
let mut hash_map = HashMap::new();
|
assert_eq!(canopy_activation_height, Height(1_046_400));
|
||||||
hash_map.insert(FundingStreamReceiver::Ecc, Amount::try_from(21_875_000)?);
|
assert_eq!(nu6_activation_height, Height(2_726_400));
|
||||||
hash_map.insert(
|
|
||||||
|
assert_eq!(dev_fund_height_range.start, canopy_activation_height);
|
||||||
|
assert_eq!(dev_fund_height_range.end, nu6_activation_height);
|
||||||
|
|
||||||
|
assert_eq!(nu6_fund_height_range.start, nu6_activation_height);
|
||||||
|
assert_eq!(nu6_fund_height_range.end, nu6_fund_end);
|
||||||
|
|
||||||
|
assert_eq!(dev_fund_height_range.end, nu6_fund_height_range.start);
|
||||||
|
|
||||||
|
let mut expected_dev_fund = HashMap::new();
|
||||||
|
|
||||||
|
expected_dev_fund.insert(FundingStreamReceiver::Ecc, Amount::try_from(21_875_000)?);
|
||||||
|
expected_dev_fund.insert(
|
||||||
FundingStreamReceiver::ZcashFoundation,
|
FundingStreamReceiver::ZcashFoundation,
|
||||||
Amount::try_from(15_625_000)?,
|
Amount::try_from(15_625_000)?,
|
||||||
);
|
);
|
||||||
hash_map.insert(
|
expected_dev_fund.insert(
|
||||||
FundingStreamReceiver::MajorGrants,
|
FundingStreamReceiver::MajorGrants,
|
||||||
Amount::try_from(25_000_000)?,
|
Amount::try_from(25_000_000)?,
|
||||||
);
|
);
|
||||||
|
let expected_dev_fund = expected_dev_fund;
|
||||||
|
|
||||||
assert_eq!(
|
let mut expected_nu6_fund = HashMap::new();
|
||||||
funding_stream_values(
|
expected_nu6_fund.insert(
|
||||||
canopy_height,
|
|
||||||
network,
|
|
||||||
block_subsidy(canopy_height, network)?
|
|
||||||
)
|
|
||||||
.unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
funding_stream_values(
|
|
||||||
canopy_height_plus1,
|
|
||||||
network,
|
|
||||||
block_subsidy(canopy_height_plus1, network)?
|
|
||||||
)
|
|
||||||
.unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
funding_stream_values(
|
|
||||||
canopy_height_plus2,
|
|
||||||
network,
|
|
||||||
block_subsidy(canopy_height_plus2, network)?
|
|
||||||
)
|
|
||||||
.unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
|
|
||||||
// funding stream period is ending
|
|
||||||
let range = network.pre_nu6_funding_streams().height_range();
|
|
||||||
let end = range.end;
|
|
||||||
let last = (end - 1).unwrap();
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
funding_stream_values(last, network, block_subsidy(last, network)?).unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
|
|
||||||
assert!(funding_stream_values(end, network, block_subsidy(end, network)?)?.is_empty());
|
|
||||||
|
|
||||||
// TODO: Replace this with Mainnet once there's an NU6 activation height defined for Mainnet
|
|
||||||
let network = testnet::Parameters::build()
|
|
||||||
.with_activation_heights(ConfiguredActivationHeights {
|
|
||||||
blossom: Some(Blossom.activation_height(network).unwrap().0),
|
|
||||||
nu6: Some(POST_NU6_FUNDING_STREAMS_MAINNET.height_range().start.0),
|
|
||||||
..Default::default()
|
|
||||||
})
|
|
||||||
.with_post_nu6_funding_streams(ConfiguredFundingStreams {
|
|
||||||
// Start checking funding streams from block height 1
|
|
||||||
height_range: Some(POST_NU6_FUNDING_STREAMS_MAINNET.height_range().clone()),
|
|
||||||
// Use default post-NU6 recipients
|
|
||||||
recipients: Some(
|
|
||||||
POST_NU6_FUNDING_STREAMS_TESTNET
|
|
||||||
.recipients()
|
|
||||||
.iter()
|
|
||||||
.map(|(&receiver, recipient)| ConfiguredFundingStreamRecipient {
|
|
||||||
receiver,
|
|
||||||
numerator: recipient.numerator(),
|
|
||||||
addresses: Some(
|
|
||||||
recipient
|
|
||||||
.addresses()
|
|
||||||
.iter()
|
|
||||||
.map(|addr| addr.to_string())
|
|
||||||
.collect(),
|
|
||||||
),
|
|
||||||
})
|
|
||||||
.collect(),
|
|
||||||
),
|
|
||||||
})
|
|
||||||
.to_network();
|
|
||||||
|
|
||||||
let mut hash_map = HashMap::new();
|
|
||||||
hash_map.insert(
|
|
||||||
FundingStreamReceiver::Deferred,
|
FundingStreamReceiver::Deferred,
|
||||||
Amount::try_from(18_750_000)?,
|
Amount::try_from(18_750_000)?,
|
||||||
);
|
);
|
||||||
hash_map.insert(
|
expected_nu6_fund.insert(
|
||||||
FundingStreamReceiver::MajorGrants,
|
FundingStreamReceiver::MajorGrants,
|
||||||
Amount::try_from(12_500_000)?,
|
Amount::try_from(12_500_000)?,
|
||||||
);
|
);
|
||||||
|
let expected_nu6_fund = expected_nu6_fund;
|
||||||
let nu6_height = Nu6.activation_height(&network).unwrap();
|
|
||||||
|
|
||||||
for height in [
|
for height in [
|
||||||
nu6_height,
|
dev_fund_height_range.start.previous().unwrap(),
|
||||||
Height(nu6_height.0 + 1),
|
dev_fund_height_range.start,
|
||||||
Height(nu6_height.0 + 1),
|
dev_fund_height_range.start.next().unwrap(),
|
||||||
|
dev_fund_height_range.end.previous().unwrap(),
|
||||||
|
dev_fund_height_range.end,
|
||||||
|
dev_fund_height_range.end.next().unwrap(),
|
||||||
|
nu6_fund_height_range.start.previous().unwrap(),
|
||||||
|
nu6_fund_height_range.start,
|
||||||
|
nu6_fund_height_range.start.next().unwrap(),
|
||||||
|
nu6_fund_height_range.end.previous().unwrap(),
|
||||||
|
nu6_fund_height_range.end,
|
||||||
|
nu6_fund_height_range.end.next().unwrap(),
|
||||||
] {
|
] {
|
||||||
assert_eq!(
|
let fsv = funding_stream_values(height, network, block_subsidy(height, network)?).unwrap();
|
||||||
funding_stream_values(height, &network, block_subsidy(height, &network)?).unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Replace this with Mainnet once there's an NU6 activation height defined for Mainnet
|
if height < canopy_activation_height {
|
||||||
let network = testnet::Parameters::build()
|
assert!(fsv.is_empty());
|
||||||
.with_activation_heights(ConfiguredActivationHeights {
|
} else if height < nu6_activation_height {
|
||||||
blossom: Some(Blossom.activation_height(&network).unwrap().0),
|
assert_eq!(fsv, expected_dev_fund);
|
||||||
nu6: Some(POST_NU6_FUNDING_STREAMS_MAINNET.height_range().start.0),
|
} else if height < nu6_fund_end {
|
||||||
..Default::default()
|
assert_eq!(fsv, expected_nu6_fund);
|
||||||
})
|
} else {
|
||||||
.with_post_nu6_funding_streams(ConfiguredFundingStreams {
|
assert!(fsv.is_empty());
|
||||||
// Start checking funding streams from block height 1
|
}
|
||||||
height_range: Some(POST_NU6_FUNDING_STREAMS_MAINNET.height_range().clone()),
|
|
||||||
// Use default post-NU6 recipients
|
|
||||||
recipients: Some(
|
|
||||||
POST_NU6_FUNDING_STREAMS_TESTNET
|
|
||||||
.recipients()
|
|
||||||
.iter()
|
|
||||||
.map(|(&receiver, recipient)| ConfiguredFundingStreamRecipient {
|
|
||||||
receiver,
|
|
||||||
numerator: recipient.numerator(),
|
|
||||||
addresses: Some(
|
|
||||||
recipient
|
|
||||||
.addresses()
|
|
||||||
.iter()
|
|
||||||
.map(|addr| addr.to_string())
|
|
||||||
.collect(),
|
|
||||||
),
|
|
||||||
})
|
|
||||||
.collect(),
|
|
||||||
),
|
|
||||||
})
|
|
||||||
.to_network();
|
|
||||||
|
|
||||||
let mut hash_map = HashMap::new();
|
|
||||||
hash_map.insert(
|
|
||||||
FundingStreamReceiver::Deferred,
|
|
||||||
Amount::try_from(18_750_000)?,
|
|
||||||
);
|
|
||||||
hash_map.insert(
|
|
||||||
FundingStreamReceiver::MajorGrants,
|
|
||||||
Amount::try_from(12_500_000)?,
|
|
||||||
);
|
|
||||||
|
|
||||||
let nu6_height = Nu6.activation_height(&network).unwrap();
|
|
||||||
|
|
||||||
for height in [
|
|
||||||
nu6_height,
|
|
||||||
Height(nu6_height.0 + 1),
|
|
||||||
Height(nu6_height.0 + 1),
|
|
||||||
] {
|
|
||||||
assert_eq!(
|
|
||||||
funding_stream_values(height, &network, block_subsidy(height, &network)?).unwrap(),
|
|
||||||
hash_map
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -337,7 +337,10 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: u32 = 30 * 60;
|
||||||
///
|
///
|
||||||
/// The current protocol version typically changes before Mainnet and Testnet
|
/// The current protocol version typically changes before Mainnet and Testnet
|
||||||
/// network upgrades.
|
/// network upgrades.
|
||||||
pub const CURRENT_NETWORK_PROTOCOL_VERSION: Version = Version(170_110);
|
///
|
||||||
|
/// This version of Zebra draws the current network protocol version from
|
||||||
|
/// [ZIP-253](https://zips.z.cash/zip-0253).
|
||||||
|
pub const CURRENT_NETWORK_PROTOCOL_VERSION: Version = Version(170_120);
|
||||||
|
|
||||||
/// The default RTT estimate for peer responses.
|
/// The default RTT estimate for peer responses.
|
||||||
///
|
///
|
||||||
|
@ -393,6 +396,7 @@ lazy_static! {
|
||||||
///
|
///
|
||||||
/// The minimum network protocol version typically changes after Mainnet and
|
/// The minimum network protocol version typically changes after Mainnet and
|
||||||
/// Testnet network upgrades.
|
/// Testnet network upgrades.
|
||||||
|
// TODO: Change `Nu5` to `Nu6` after NU6 activation.
|
||||||
// TODO: Move the value here to a field on `testnet::Parameters` (#8367)
|
// TODO: Move the value here to a field on `testnet::Parameters` (#8367)
|
||||||
pub static ref INITIAL_MIN_NETWORK_PROTOCOL_VERSION: HashMap<NetworkKind, Version> = {
|
pub static ref INITIAL_MIN_NETWORK_PROTOCOL_VERSION: HashMap<NetworkKind, Version> = {
|
||||||
let mut hash_map = HashMap::new();
|
let mut hash_map = HashMap::new();
|
||||||
|
|
|
@ -72,12 +72,23 @@ impl Version {
|
||||||
|
|
||||||
/// Returns the minimum specified network protocol version for `network` and
|
/// Returns the minimum specified network protocol version for `network` and
|
||||||
/// `network_upgrade`.
|
/// `network_upgrade`.
|
||||||
|
///
|
||||||
|
/// ## ZIP-253
|
||||||
|
///
|
||||||
|
/// > Nodes compatible with a network upgrade activation MUST advertise a network protocol
|
||||||
|
/// > version that is greater than or equal to the MIN_NETWORK_PROTOCOL_VERSION for that
|
||||||
|
/// > activation.
|
||||||
|
///
|
||||||
|
/// <https://zips.z.cash/zip-0253>
|
||||||
|
///
|
||||||
|
/// ### Notes
|
||||||
|
///
|
||||||
|
/// - The citation above is a generalization of a statement in ZIP-253 since that ZIP is
|
||||||
|
/// concerned only with NU6 on Mainnet and Testnet.
|
||||||
pub(crate) fn min_specified_for_upgrade(
|
pub(crate) fn min_specified_for_upgrade(
|
||||||
network: &Network,
|
network: &Network,
|
||||||
network_upgrade: NetworkUpgrade,
|
network_upgrade: NetworkUpgrade,
|
||||||
) -> Version {
|
) -> Version {
|
||||||
// TODO: Should we reject earlier protocol versions during our initial
|
|
||||||
// sync? zcashd accepts 170_002 or later during its initial sync.
|
|
||||||
Version(match (network, network_upgrade) {
|
Version(match (network, network_upgrade) {
|
||||||
(_, Genesis) | (_, BeforeOverwinter) => 170_002,
|
(_, Genesis) | (_, BeforeOverwinter) => 170_002,
|
||||||
(Testnet(params), Overwinter) if params.is_default_testnet() => 170_003,
|
(Testnet(params), Overwinter) if params.is_default_testnet() => 170_003,
|
||||||
|
|
|
@ -64,6 +64,11 @@ expression: info
|
||||||
"name": "NU5",
|
"name": "NU5",
|
||||||
"activationheight": 1687104,
|
"activationheight": 1687104,
|
||||||
"status": "pending"
|
"status": "pending"
|
||||||
|
},
|
||||||
|
"c8e71055": {
|
||||||
|
"name": "NU6",
|
||||||
|
"activationheight": 2726400,
|
||||||
|
"status": "pending"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consensus": {
|
"consensus": {
|
||||||
|
|
Loading…
Reference in New Issue