From 44dbc51f8c6c422c8268084c3b470f5c75e00899 Mon Sep 17 00:00:00 2001 From: sakridge Date: Wed, 6 Oct 2021 18:50:12 +0200 Subject: [PATCH] Backport tpu vote feature (#20459) --- sdk/src/feature_set.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/src/feature_set.rs b/sdk/src/feature_set.rs index e5ef1258d7..79410e5019 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -174,6 +174,10 @@ pub mod stakes_remove_delegation_if_inactive { solana_sdk::declare_id!("HFpdDDNQjvcXnXKec697HDDsyk6tFoWS2o8fkxuhQZpL"); } +pub mod send_to_tpu_vote_port { + solana_sdk::declare_id!("C5fh68nJ7uyKAuYZg2x9sEQ5YrVf3dkW6oojNBSc3Jvo"); +} + lazy_static! { /// Map of feature identifiers to user-visible description pub static ref FEATURE_NAMES: HashMap = [ @@ -216,6 +220,7 @@ lazy_static! { (spl_token_v2_set_authority_fix::id(), "spl-token set_authority fix"), (demote_program_write_locks::id(), "demote program write locks to readonly, except when upgradeable loader present #19593 #20263"), (stakes_remove_delegation_if_inactive::id(), "remove delegations from stakes cache when inactive"), + (send_to_tpu_vote_port::id(), "Send votes to the tpu vote port"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter()