gemachain_compute_budget_program/lib.rs
1use gemachain_sdk::{
2 instruction::InstructionError, process_instruction::InvokeContext, pubkey::Pubkey,
3};
4
5pub fn process_instruction(
6 _program_id: &Pubkey,
7 _data: &[u8],
8 _invoke_context: &mut dyn InvokeContext,
9) -> Result<(), InstructionError> {
10 // Do nothing, compute budget instructions handled by the runtime
11 Ok(())
12}