From f2d415cf13a1658c3b32d59afee00504dde7ac76 Mon Sep 17 00:00:00 2001 From: buburuza27 <78487355+buburuza27@users.noreply.github.com> Date: Wed, 3 Feb 2021 18:30:44 +0200 Subject: [PATCH] Nomination candidate for buburuza (#15047) --- sdk/src/feature_set.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/sdk/src/feature_set.rs b/sdk/src/feature_set.rs index a86ef9d719..d7347a109b 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -49,6 +49,14 @@ pub mod full_inflation { } } + pub mod buburuza { + pub mod vote { + solana_sdk::declare_id!("4qp2VKAPgmi53N7DkobejdbPgkpP2316mSAZnKaWeDtR"); + } + pub mod enable { + solana_sdk::declare_id!("BSsRT3AcddKioKwfHqzDNmgMPuzWeHKwocWokj21Xxnf"); + } + } pub mod bunghi { pub mod vote { solana_sdk::declare_id!("E9hFUVEz29H8XMXk7ygk7ZpCuEuZQ8DJvJKJSTGu1RM6"); @@ -277,6 +285,8 @@ lazy_static! { (full_inflation::bl::enable::id(), "Full inflation enabled by BL"), (full_inflation::bunghi::vote::id(), "Community vote allowing bunghi to enable full inflation"), (full_inflation::bunghi::enable::id(), "Full inflation enabled by bunghi"), + (full_inflation::buburuza::vote::id(), "Community vote allowing buburuza to enable full inflation"), + (full_inflation::buburuza::enable::id(), "Full inflation enabled by buburuza"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter() @@ -328,6 +338,10 @@ lazy_static! { vote_id: full_inflation::bunghi::vote::id(), enable_id: full_inflation::bunghi::enable::id(), }, + FullInflationFeaturePair { + vote_id: full_inflation::buburuza::vote::id(), + enable_id: full_inflation::buburuza::enable::id(), + }, ] .iter() .cloned()