* Add vote/stake checked instructions (cherry picked from commitee219ffa47
) # Conflicts: # programs/stake/src/stake_instruction.rs # sdk/program/src/stake/instruction.rs # sdk/src/feature_set.rs * Fix set-lockup custodian index (cherry picked from commit544f62c92f
) * Add parsing for new stake instructions; clean up confusing test args (cherry picked from commit9b302ac0b5
) # Conflicts: # transaction-status/src/parse_stake.rs * Add parsing for new vote instructions (cherry picked from commit39bac256ab
) * Add VoteInstruction::AuthorizeChecked test (cherry picked from commitb8ca2250fd
) * Add Stake checked tests (cherry picked from commit74e89a3e3e
) # Conflicts: # programs/stake/src/stake_instruction.rs * Fix conflicts and accommodate old apis in backport Co-authored-by: Michael Vines <mvines@gmail.com> Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
@@ -154,6 +154,10 @@ pub mod dedupe_config_program_signers {
|
||||
solana_sdk::declare_id!("8kEuAshXLsgkUEdcFVLqrjCGGHVWFW99ZZpxvAzzMtBp");
|
||||
}
|
||||
|
||||
pub mod vote_stake_checked_instructions {
|
||||
solana_sdk::declare_id!("BcWknVcgvonN8sL4HE4XFuEVgfcee5MwxWPAgP6ZV89X");
|
||||
}
|
||||
|
||||
lazy_static! {
|
||||
/// Map of feature identifiers to user-visible description
|
||||
pub static ref FEATURE_NAMES: HashMap<Pubkey, &'static str> = [
|
||||
@@ -191,6 +195,7 @@ lazy_static! {
|
||||
(system_transfer_zero_check::id(), "perform all checks for transfers of 0 lamports"),
|
||||
(memory_ops_syscalls::id(), "add syscalls for memory operations"),
|
||||
(dedupe_config_program_signers::id(), "dedupe config program signers"),
|
||||
(vote_stake_checked_instructions::id(), "vote/state program checked instructions #18345"),
|
||||
/*************** ADD NEW FEATURES HERE ***************/
|
||||
]
|
||||
.iter()
|
||||
|
Reference in New Issue
Block a user