Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Inflation Nomination for Diman #15083

Merged
merged 2 commits into from
Feb 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into master
  • Loading branch information
mvines authored Feb 4, 2021
commit 9bb59b6f07109ddeebff94055cd278cb3d7a6c94
15 changes: 15 additions & 0 deletions sdk/src/feature_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,15 @@ pub mod full_inflation {
solana_sdk::declare_id!("DimAnioV7WQM2L41fckvg2ei3NLHV2ACy5qoTKpi8Uz5");
}
}

pub mod p2pvalidator {
pub mod vote {
solana_sdk::declare_id!("89xUFJyCb3JQ7WbYBK4vza5uyCCTXXv8UQEUCQjo4SbC");
}
pub mod enable {
solana_sdk::declare_id!("C89S2MdjXuP6UmgmqKpszoUahfXLd4xVeikP8vJMioNE");
}
}
}

pub mod spl_token_v2_multisig_fix {
Expand Down Expand Up @@ -298,6 +307,8 @@ lazy_static! {
(full_inflation::buburuza::enable::id(), "Full inflation enabled by buburuza"),
(full_inflation::diman::vote::id(), "Community vote allowing Diman to enable full inflation"),
(full_inflation::diman::enable::id(), "Full inflation enabled by Diman"),
(full_inflation::p2pvalidator::vote::id(), "Community vote allowing p2pvalidator to enable full inflation"),
(full_inflation::p2pvalidator::enable::id(), "Full inflation enabled by p2pvalidator"),
/*************** ADD NEW FEATURES HERE ***************/
]
.iter()
Expand Down Expand Up @@ -357,6 +368,10 @@ lazy_static! {
vote_id: full_inflation::diman::vote::id(),
enable_id: full_inflation::diman::enable::id(),
},
FullInflationFeaturePair {
vote_id: full_inflation::p2pvalidator::vote::id(),
enable_id: full_inflation::p2pvalidator::enable::id(),
},
]
.iter()
.cloned()
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.