solana_runtime/
runtime_config.rs

1use solana_program_runtime::compute_budget::ComputeBudget;
2
3/// Encapsulates flags that can be used to tweak the runtime behavior.
4#[derive(Default, Clone)]
5pub struct RuntimeConfig {
6    pub bpf_jit: bool,
7    pub compute_budget: Option<ComputeBudget>,
8    pub log_messages_bytes_limit: Option<usize>,
9}