Skip to content

Commit

Permalink
Set testnet voting to Tue, Aug 8th 10AM UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
jancionear committed Jul 30, 2024
1 parent e7a3467 commit 696a846
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.1.0
// Tuesday
let protocol_version = 70;
let datetime = ProtocolUpgradeVotingSchedule::parse_datetime("2024-08-06 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 696a846

Please sign in to comment.