From eccea2b1ea95746b753c30c29c17c56d1f29baa8 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 5 Feb 2021 08:59:26 -0800 Subject: [PATCH] Add w3m's inflation pubkeys (#15142) (#15144) (cherry picked from commit 2a60dd849287483271345abed977bce790beef7b) Co-authored-by: Michael Vines --- sdk/src/feature_set.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sdk/src/feature_set.rs b/sdk/src/feature_set.rs index d2e348782f..bed0652c94 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -147,6 +147,15 @@ pub mod full_inflation { solana_sdk::declare_id!("5NUfXNZUsP1ndyShQJ37H2dgHaEGaUNqgT9zn3BTiwct"); } } + + pub mod w3m { + pub mod vote { + solana_sdk::declare_id!("H44JGZCFs9uViWBeC8LodrbCn8VWjg8GkjtdeRx4LCLM"); + } + pub mod enable { + solana_sdk::declare_id!("3dG48jJJT3nDBLiGyFABCpTEacP8JNYzjrmCZFv7mbUU"); + } + } } pub mod spl_token_v2_multisig_fix { @@ -342,6 +351,8 @@ lazy_static! { (full_inflation::sotcsa::vote::id(), "Community vote allowing sotcsa to enable full inflation"), (full_inflation::stakeconomy::enable::id(), "Full inflation enabled by Stakeconomy.com"), (full_inflation::stakeconomy::vote::id(), "Community vote allowing Stakeconomy.com to enable full inflation"), + (full_inflation::w3m::vote::id(), "Community vote allowing w3m to enable full inflation"), + (full_inflation::w3m::enable::id(), "Full inflation enabled by w3m"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter() @@ -417,6 +428,10 @@ lazy_static! { vote_id: full_inflation::stakeconomy::vote::id(), enable_id: full_inflation::stakeconomy::enable::id(), }, + FullInflationFeaturePair { + vote_id: full_inflation::w3m::vote::id(), + enable_id: full_inflation::w3m::enable::id(), + }, ] .iter() .cloned()