Cleanup unsupported sysvars (#16390)
* Cleanup unsupported sysvars * fix ser description
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
#![allow(clippy::integer_arithmetic)]
|
||||
//! This account contains the serialized transaction instructions
|
||||
|
||||
use crate::{instruction::Instruction, sanitize::SanitizeError, sysvar::Sysvar};
|
||||
use crate::{instruction::Instruction, sanitize::SanitizeError};
|
||||
|
||||
pub type Instructions = Vec<Instruction>;
|
||||
// Instructions Sysvar, dummy type, use the associated helpers instead of the Sysvar trait
|
||||
pub struct Instructions();
|
||||
|
||||
crate::declare_sysvar_id!("Sysvar1nstructions1111111111111111111111111", Instructions);
|
||||
|
||||
impl Sysvar for Instructions {}
|
||||
|
||||
/// Load the current instruction's index from the Instructions Sysvar data
|
||||
pub fn load_current_index(data: &[u8]) -> u16 {
|
||||
let mut instr_fixed_data = [0u8; 2];
|
||||
let len = data.len();
|
||||
@@ -16,11 +16,13 @@ pub fn load_current_index(data: &[u8]) -> u16 {
|
||||
u16::from_le_bytes(instr_fixed_data)
|
||||
}
|
||||
|
||||
/// Store the current instruction's index in the Instructions Sysvar data
|
||||
pub fn store_current_index(data: &mut [u8], instruction_index: u16) {
|
||||
let last_index = data.len() - 2;
|
||||
data[last_index..last_index + 2].copy_from_slice(&instruction_index.to_le_bytes());
|
||||
}
|
||||
|
||||
/// Load an instruction at the specified index
|
||||
pub fn load_instruction_at(index: usize, data: &[u8]) -> Result<Instruction, SanitizeError> {
|
||||
crate::message::Message::deserialize_instruction(index, data)
|
||||
}
|
||||
|
Reference in New Issue
Block a user