Skip to content

Commit

Permalink
Set mainnet voting date to Monday 2024-09-23 10:00:00
Browse files Browse the repository at this point in the history
  • Loading branch information
jancionear committed Sep 16, 2024
1 parent b3d767e commit f9f8ad3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/primitives/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,12 @@ pub const PROTOCOL_UPGRADE_SCHEDULE: Lazy<ProtocolUpgradeVotingSchedule> = Lazy:
// let schedule = vec![(v1_datetime, v1_protocol_version), (v2_datetime, v2_protocol_version)];
// ProtocolUpgradeVotingSchedule::new_from_env_or_schedule(PROTOCOL_VERSION, schedule).unwrap()

ProtocolUpgradeVotingSchedule::new_from_env_or_schedule(PROTOCOL_VERSION, vec![]).unwrap()
// 2.2.1
// Monday, 2024-09-23 10:00:00 UTC
let protocol_version = 71;
let datetime = ProtocolUpgradeVotingSchedule::parse_datetime("2024-09-23 10:00:00").unwrap();
let schedule = vec![(datetime, protocol_version)];
ProtocolUpgradeVotingSchedule::new_from_env_or_schedule(PROTOCOL_VERSION, schedule).unwrap()
});

/// Gives new clients an option to upgrade without announcing that they support
Expand Down

0 comments on commit f9f8ad3

Please sign in to comment.