Skip to content

Commit

Permalink
Create MIP "MIP-0001-ASC-BugFix"
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Besancon committed Jun 18, 2024
1 parent 721f4ce commit a711180
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
28 changes: 12 additions & 16 deletions massa-versioning/src/mips.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,19 @@ use massa_time::MassaTime;
#[allow(unused_imports)]
use crate::versioning::{MipComponent, MipInfo, MipState};

pub fn get_mip_list() -> [(MipInfo, MipState); 0] {
// placeholder
pub fn get_mip_list() -> [(MipInfo, MipState); 1] {
let mip_list = [
/*
(MipInfo {
name: "MIP-0000".to_string(),
version: 0,
components: BTreeMap::from([
(MipComponent::Address, 0),
(MipComponent::KeyPair, 0),
]),
start: MassaTime::from_millis(0),
timeout: MassaTime::from_millis(0),
activation_delay: MassaTime::from_millis(0),
},
MipState::new(MassaTime::from_millis(0)))
*/
(
MipInfo {
name: "MIP-0001-ASC-BugFix".to_string(),
version: 1,
components: BTreeMap::from([(MipComponent::AscExecution, 1)]),
start: MassaTime::from_millis(0), // TODO: set when known
timeout: MassaTime::from_millis(0), // TODO: set when known
activation_delay: MassaTime::from_millis(3 * 24 * 60 * 60 * 1000), // TODO: set when known, 3 days as an example
},
MipState::new(MassaTime::from_millis(0)),
), // TODO: set when known, (when the MIP becomes defined, e.g. when merged to main branch)
];

// debug!("MIP list: {:?}", mip_list);
Expand Down
1 change: 1 addition & 0 deletions massa-versioning/src/versioning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ pub enum MipComponent {
Block,
VM,
FinalStateHashKind,
AscExecution,
#[doc(hidden)]
#[num_enum(default)]
__Nonexhaustive,
Expand Down

0 comments on commit a711180

Please sign in to comment.