From e908a4b3fc6f433e1351edd0aa61e0205d20a5e3 Mon Sep 17 00:00:00 2001 From: sotcsa Date: Fri, 5 Feb 2021 06:45:17 +0100 Subject: [PATCH] Inflation Nomination for sotcsa (#15105) --- 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 97c9ab0529..e1d7a23e4f 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -49,6 +49,15 @@ pub mod full_inflation { } } + pub mod sotcsa { + pub mod vote { + solana_sdk::declare_id!("EgoekfqCYoraFE5ZkiECGQ945Y5rGBXh3n85sQPuR85r"); + } + pub mod enable { + solana_sdk::declare_id!("6f8Y2dACzRjM9R9RwiLp9HuAxo43QwtztgHm4BKUGyxU"); + } + } + pub mod buburuza { pub mod vote { solana_sdk::declare_id!("4qp2VKAPgmi53N7DkobejdbPgkpP2316mSAZnKaWeDtR"); @@ -332,6 +341,8 @@ lazy_static! { (full_inflation::rockx::vote::id(), "Community vote allowing rockx to enable full inflation"), (full_inflation::rockx::enable::id(), "Full inflation enabled by rockx"), /*************** ADD NEW FEATURES HERE ***************/ + (full_inflation::sotcsa::vote::id(), "community vote allowing sotcsa to enable full inflation"), + (full_inflation::sotcsa::enable::id(), "full inflation enabled by sotcsa"), ] .iter() .cloned() @@ -362,6 +373,10 @@ lazy_static! { vote_id: full_inflation::candidate_example::vote::id(), enable_id: full_inflation::candidate_example::enable::id(), }, + FullInflationFeaturePair { + vote_id: full_inflation::sotcsa::vote::id(), + enable_id: full_inflation::sotcsa::enable::id(), + }, FullInflationFeaturePair { vote_id: full_inflation::stakeconomy::vote::id(), enable_id: full_inflation::stakeconomy::enable::id(),