Skip to content

Commit

Permalink
Remove use_latest_elf
Browse files Browse the repository at this point in the history
  • Loading branch information
jfldde committed Jan 6, 2025
1 parent ba17873 commit df45afe
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/citrea_config/batch_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ pub struct BatchProverConfig {
pub proof_sampling_number: usize,
/// If true prover will try to recover ongoing proving sessions
pub enable_recovery: bool,
/// Wether to always use the latest ELF or not
pub use_latest_elf: bool,
}

impl Default for BatchProverConfig {
Expand All @@ -49,7 +47,6 @@ impl Default for BatchProverConfig {
proving_mode: ProverGuestRunConfig::Execute,
proof_sampling_number: 0,
enable_recovery: true,
use_latest_elf: true,
}
}
}
Expand Down Expand Up @@ -100,7 +97,6 @@ mod tests {
proving_mode: ProverGuestRunConfig::Skip,
proof_sampling_number: 500,
enable_recovery: true,
use_latest_elf: true,
};
assert_eq!(config, expected);
}
Expand Down

0 comments on commit df45afe

Please sign in to comment.