Skip to content

Commit

Permalink
upgrade risc0-ethereum-trie
Browse files Browse the repository at this point in the history
  • Loading branch information
Wollac committed Jan 30, 2025
1 parent 7a0bb55 commit 656258c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/core/src/mpt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl<T: Decodable + Encodable> MptNode<T> {
key: K,
post_state_proof: impl IntoIterator<Item = N>,
unresolvable: &mut B256Set,
) -> alloy_rlp::Result<()>
) -> anyhow::Result<()>
where
K: AsRef<[u8]>,
N: AsRef<[u8]>,
Expand All @@ -68,7 +68,7 @@ impl<T: Decodable + Encodable> MptNode<T> {
let key = B256::right_padding_from(&prefix.pack());
unresolvable.insert(key);
}
Err(orphan::Error::RlpError(err)) => return Err(err),
Err(err) => return Err(err.into()),
};

Ok(())
Expand Down
2 changes: 1 addition & 1 deletion guests/reth-ethereum/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion guests/reth-optimism/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 656258c

Please sign in to comment.