Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
fix: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
transmissions11 committed Oct 8, 2024
1 parent c01dcb0 commit 3d19801
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
8 changes: 8 additions & 0 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ reth-revm = { git = "https://github.com/paradigmxyz/reth.git", rev = "946f1a4",
reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", rev = "946f1a4" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", rev = "946f1a4" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", rev = "946f1a4" }

reth-exex = { git = "https://github.com/paradigmxyz/reth.git", rev = "946f1a4" }
# rpc
jsonrpsee = "0.24"

Expand Down
13 changes: 13 additions & 0 deletions bin/alphanet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,20 @@ reth-optimism-node.workspace = true
reth-optimism-cli.workspace = true
reth-optimism-rpc.workspace = true
reth-provider.workspace = true
reth-exex.workspace = true
futures = "0.3"
clap = { workspace = true, features = ["derive"] }
async-trait = "0.1"
jsonrpsee = { version = "0.24", features = ["server", "macros"] }
tokio-stream = "0.1"
tokio = { workspace = true, features = [
"sync",
"macros",
"time",
"rt-multi-thread",
] }
serde.workspace = true
serde_json.workspace = true

[features]
default = ["jemalloc"]
Expand Down
3 changes: 1 addition & 2 deletions bin/alphanet/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use reth_optimism_node::{args::RollupArgs, node::OptimismAddOns};
use reth_optimism_rpc::sequencer::SequencerClient;
use reth_provider::providers::BlockchainProvider2;
use serde::{Deserialize, Serialize};
use std::{future::Future, pin::Pin, sync::mpsc, task::Poll};
use std::{future::Future, pin::Pin, task::Poll};
use tokio::sync::{mpsc, oneshot};
use tokio_stream::wrappers::UnboundedReceiverStream;
use tracing::{info, warn};
Expand Down Expand Up @@ -152,7 +152,6 @@ pub struct BlockTimeData {
block_timestamp: u64,
}

#[derive(Debug)]
pub struct WallTimeExEx<Node: FullNodeComponents> {
/// The context of the `ExEx`
ctx: ExExContext<Node>,
Expand Down

0 comments on commit 3d19801

Please sign in to comment.