Skip to content

Commit

Permalink
Set mainnet voting date to Monday 2024-09-16 19:00 UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
jancionear committed Sep 9, 2024
1 parent e3f4394 commit 7dbfa11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/primitives/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ 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()

// 2.2.0-rc.1
// Tuesday, 2024-09-03 10:00:00 UTC
// 2.2.0
// Monday, 2024-09-16 19:00:00 UTC
let protocol_version = 71;
let datetime = ProtocolUpgradeVotingSchedule::parse_datetime("2024-09-03 10:00:00").unwrap();
let datetime = ProtocolUpgradeVotingSchedule::parse_datetime("2024-09-16 19:00:00").unwrap();
let schedule = vec![(datetime, protocol_version)];
ProtocolUpgradeVotingSchedule::new_from_env_or_schedule(PROTOCOL_VERSION, schedule).unwrap()
});
Expand Down

0 comments on commit 7dbfa11

Please sign in to comment.