docs: update sysvar docs for load_instruction_at_checked (#22925)
* docs: update sysvar docs for load_instruction_at_checked Update the instruction introspection docs to use the updated load_instruction_at_checked function instead of deprecated load_instruction_at * Update to load_current_index_checked
This commit is contained in:
parent
e7cf84a593
commit
64e2d9dc47
|
@ -16,8 +16,8 @@ and received the Message's instruction data inside, and also the index of the cu
|
|||
Two helper functions to extract this data can be used:
|
||||
|
||||
```
|
||||
fn load_current_index(instruction_data: &[u8]) -> u16;
|
||||
fn load_instruction_at(instruction_index: usize, instruction_data: &[u8]) -> Result<Instruction>;
|
||||
fn load_current_index_checked(instruction_data: &[u8]) -> u16;
|
||||
fn load_instruction_at_checked(instruction_index: usize, instruction_sysvar_account_info: &AccountInfo) -> Result<Instruction>;
|
||||
```
|
||||
|
||||
The runtime will recognize this special instruction, serialize the Message instruction data
|
||||
|
|
Loading…
Reference in New Issue