Skip to content

Commit

Permalink
changes to make raiko play nice with reth
Browse files Browse the repository at this point in the history
  • Loading branch information
Brechtpd committed May 14, 2024
1 parent b3c2c1d commit 5e0eee5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ sp1-helper = { git = "https://github.com/succinctlabs/sp1.git", branch = "main"
# alloy
alloy-rlp = { version = "0.3.4", default-features = false }
alloy-rlp-derive = { version = "0.3.4", default-features = false }
alloy-core = { version = "0.7.1", default-features = false }
alloy-dyn-abi = { version = "0.7.1", default-features = false }
alloy-json-abi = { version = "0.7.1", default-features = false }
alloy-primitives = { version = "0.7.1", default-features = false }
alloy-sol-types = { version = "0.7.1", default-features = false }
alloy-core = { version = "0.7.2", default-features = false }
alloy-dyn-abi = { version = "0.7.2", default-features = false }
alloy-json-abi = { version = "0.7.2", default-features = false }
alloy-primitives = { version = "0.7.2", default-features = false }
alloy-sol-types = { version = "0.7.2", default-features = false }
alloy-rpc-types = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e" }
alloy-rpc-client = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e" }
alloy-consensus = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e", features = [
Expand Down
6 changes: 3 additions & 3 deletions host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use serde_json::Value;

use crate::{error::HostResult, request::ProofRequestOpt};

type MerkleProof = HashMap<Address, EIP1186AccountProofResponse>;
pub type MerkleProof = HashMap<Address, EIP1186AccountProofResponse>;

#[global_allocator]
static ALLOCATOR: Cap<alloc::System> = Cap::new(alloc::System, usize::MAX);
Expand All @@ -60,8 +60,8 @@ fn default_log_level() -> String {

#[derive(Default, Clone, Serialize, Deserialize, Debug, Parser)]
#[command(
name = "raiko",
about = "The taiko prover host",
name = "raiko",
about = "The taiko prover host",
long_about = None
)]
#[serde(default)]
Expand Down

0 comments on commit 5e0eee5

Please sign in to comment.