solana_compute_budget_program/
lib.rs

1use {
2    solana_program_runtime::invoke_context::InvokeContext,
3    solana_sdk::{instruction::InstructionError, transaction_context::IndexOfAccount},
4};
5
6pub fn process_instruction(
7    _first_instruction_account: IndexOfAccount,
8    _invoke_context: &mut InvokeContext,
9) -> Result<(), InstructionError> {
10    // Do nothing, compute budget instructions handled by the runtime
11    Ok(())
12}