Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Wollac committed Mar 25, 2024
1 parent e574130 commit 8591ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/host/preflight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ fn proofs_to_tries(
for storage_proof in &fini_proofs.storage_proof {
use ethers_core::abi::ethabi::ethereum_types::BigEndianHash;
let storage_proof_key = ethers_core::types::H256::from_uint(&storage_proof.key);
add_orphaned_leafs(&storage_proof_key, &storage_proof.proof, &mut storage_nodes)?;
add_orphaned_leafs(storage_proof_key, &storage_proof.proof, &mut storage_nodes)?;
}
// create the storage trie, from all the relevant nodes
let storage_trie = resolve_nodes(&storage_root_node, &storage_nodes);
Expand Down
3 changes: 1 addition & 2 deletions testing/ef-tests/tests/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

use std::path::PathBuf;

use risc0_zkvm::{ExecutorEnv, ExecutorImpl, FileSegmentRef};
use risc0_zkvm::{ExecutorEnv, ExecutorImpl};
use rstest::rstest;
use tempfile::tempdir;
use zeth_lib::output::BlockBuildOutput;
use zeth_primitives::block::Header;
use zeth_testeth::{
Expand Down

0 comments on commit 8591ab5

Please sign in to comment.