Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sai-deng committed Sep 25, 2024
1 parent ed9637d commit fd55d1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions evm_arithmetization/src/fixed_recursive_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2992,8 +2992,7 @@ mod tests {

for segment_run in segment_iterator {
// Process and prove segment
let (_, mut segment_data) =
segment_run.map_err(|e: SegmentError| anyhow::format_err!(e))?;
let (_, mut segment_data) = segment_run?;
let segment_proof = timed!(
timing,
log::Level::Info,
Expand Down
6 changes: 1 addition & 5 deletions evm_arithmetization/src/testing_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use mpt_trie::{
nibbles::Nibbles,
partial_trie::{HashedPartialTrie, Node, PartialTrie},
};
use plonky2::hash::hash_types::RichField;

pub use crate::cpu::kernel::cancun_constants::*;
pub use crate::cpu::kernel::constants::global_exit_root::*;
Expand Down Expand Up @@ -168,10 +167,7 @@ pub fn scalable_contract_from_storage(storage_trie: &HashedPartialTrie) -> Accou

/// Get `GenerationInputs` for a dummy payload, where the block has the given
/// timestamp.
pub fn dummy_payload<F: RichField>(
timestamp: u64,
is_first_payload: bool,
) -> Result<GenerationInputs<F>> {
pub fn dummy_payload(timestamp: u64, is_first_payload: bool) -> Result<GenerationInputs> {
let beneficiary = hex!("deadbeefdeadbeefdeadbeefdeadbeefdeadbeef");

let block_metadata = BlockMetadata {
Expand Down

0 comments on commit fd55d1a

Please sign in to comment.