Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions testing/simulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@ edition = { workspace = true }

[dependencies]
clap = { workspace = true }
env_logger = { workspace = true }
environment = { workspace = true }
eth2_network_config = { workspace = true }
execution_layer = { workspace = true }
futures = { workspace = true }
kzg = { workspace = true }
logging = { workspace = true }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ackintosh it turns out we're still using the logging crate for build_workspace_filter, I think we add this back?

node_test_rig = { path = "../node_test_rig" }
parking_lot = { workspace = true }
rayon = { workspace = true }
Expand Down
4 changes: 0 additions & 4 deletions testing/simulator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ mod local_network;
mod retry;

use cli::cli_app;
use env_logger::{Builder, Env};
use local_network::LocalNetwork;
use types::MinimalEthSpec;

pub type E = MinimalEthSpec;

fn main() {
// Debugging output for libp2p and external crates.
Builder::from_env(Env::default()).init();

let matches = cli_app().get_matches();
match matches.subcommand_name() {
Some("basic-sim") => match basic_sim::run_basic_sim(&matches) {
Expand Down
Loading