From a62dd946febfb006121a03203eb874a42e8d365f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 3 Feb 2021 12:01:18 +0000 Subject: [PATCH] Nomination candidate for bunghi (#15036) (#15043) * Update feature_set.rs * Update feature_set.rs * Update sdk/src/feature_set.rs * Update feature_set.rs * Update sdk/src/feature_set.rs Co-authored-by: Michael Vines (cherry picked from commit 87815ae1fd36667bdc892d3c8e13c9a91ab670e5) Co-authored-by: bunghi <31234197+bunghi@users.noreply.github.com> --- 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 0903316a54..169d614c95 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -49,6 +49,14 @@ pub mod full_inflation { } } + pub mod bunghi { + pub mod vote { + solana_sdk::declare_id!("E9hFUVEz29H8XMXk7ygk7ZpCuEuZQ8DJvJKJSTGu1RM6"); + } + pub mod enable { + solana_sdk::declare_id!("5S9JDUb4vKY1CUxLf5oc96ZxjGrephj1jcPeTi62sYmP"); + } + } pub mod bl { pub mod vote { // The private key for this address is held by the Solana Foundation @@ -257,6 +265,8 @@ lazy_static! { (full_inflation::certusone::enable::id(), "Full inflation enabled by Certus One"), (full_inflation::bl::vote::id(), "Community vote allowing BL to enable full inflation"), (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"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter() @@ -304,6 +314,10 @@ lazy_static! { vote_id: full_inflation::bl::vote::id(), enable_id: full_inflation::bl::enable::id(), }, + FullInflationFeaturePair { + vote_id: full_inflation::bunghi::vote::id(), + enable_id: full_inflation::bunghi::enable::id(), + }, ] .iter() .cloned()