From acb2040242685fe2f7fa93665bcfaa32a6e634ca Mon Sep 17 00:00:00 2001 From: Brian Long Date: Mon, 1 Feb 2021 21:21:30 -0700 Subject: [PATCH] Inflation Nomination for BL (#14972) (cherry picked from commit 8e0fdff17c846251ab5ebd73cfbb0d540f73f5be) --- sdk/src/feature_set.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sdk/src/feature_set.rs b/sdk/src/feature_set.rs index 7727fad53f..0903316a54 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -49,6 +49,17 @@ pub mod full_inflation { } } + pub mod bl { + pub mod vote { + // The private key for this address is held by the Solana Foundation + solana_sdk::declare_id!("HRzoLj4jufnYEWosm9kWVgBVFdxAuqB1hu7vLckCuQHa"); + } + pub mod enable { + // The private key for this address is held by BL + solana_sdk::declare_id!("BLxyQtJPzYZLHyj1p9n5QHUvbPoJt4TtRh7BXbG4M6rR"); + } + } + pub mod stakeconomy { pub mod vote { solana_sdk::declare_id!("JCergKv4GcywaBzn4JHi3sYJfG7mWenTG3QQDNUJiGS"); @@ -244,6 +255,8 @@ lazy_static! { (full_inflation::nam::enable::id(), "full inflation enabled by Nam"), (full_inflation::certusone::vote::id(), "Community vote allowing Certus One to enable full inflation"), (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"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter() @@ -287,6 +300,10 @@ lazy_static! { vote_id: full_inflation::certusone::vote::id(), enable_id: full_inflation::certusone::enable::id(), }, + FullInflationFeaturePair { + vote_id: full_inflation::bl::vote::id(), + enable_id: full_inflation::bl::enable::id(), + }, ] .iter() .cloned()