1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use {
    solana_program_runtime::invoke_context::InvokeContext,
    solana_sdk::instruction::InstructionError,
};

pub fn process_instruction(
    _first_instruction_account: usize,
    _data: &[u8],
    _invoke_context: &mut InvokeContext,
) -> Result<(), InstructionError> {
    // Do nothing, compute budget instructions handled by the runtime
    Ok(())
}