* Add vote/stake checked instructions (cherry picked from commitee219ffa47
) * Fix set-lockup custodian index (cherry picked from commit544f62c92f
) * Add parsing for new stake instructions; clean up confusing test args (cherry picked from commit9b302ac0b5
) * 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
) Co-authored-by: Michael Vines <mvines@gmail.com> Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
@@ -147,6 +147,10 @@ pub mod verify_tx_signatures_len {
|
||||
solana_sdk::declare_id!("EVW9B5xD9FFK7vw1SBARwMA4s5eRo5eKJdKpsBikzKBz");
|
||||
}
|
||||
|
||||
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> = [
|
||||
@@ -183,6 +187,7 @@ lazy_static! {
|
||||
(add_missing_program_error_mappings::id(), "add missing program error mappings"),
|
||||
(system_transfer_zero_check::id(), "perform all checks for transfers of 0 lamports"),
|
||||
(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