Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ codegen-units = 1
incremental = false

[workspace.lints.rust]
unreachable_pub = "warn"
unreachable_pub = "deny"

[workspace.lints.clippy]
unused_async = "warn"

[workspace.dependencies]
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2" }
Expand Down
2 changes: 1 addition & 1 deletion crates/op-rbuilder/src/bin/tester/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async fn main() -> eyre::Result<()> {
let cli = Cli::parse();

match cli.command {
Commands::Genesis { output } => generate_genesis(output).await,
Commands::Genesis { output } => generate_genesis(output),
Commands::Run { validation, .. } => run_system(validation).await,
Commands::Deposit { address, amount } => {
let engine_api = EngineApi::with_http("http://localhost:4444");
Expand Down
2 changes: 1 addition & 1 deletion crates/op-rbuilder/src/tests/framework/apis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ pub trait BlockApi {
) -> RpcResult<Option<alloy_rpc_types_eth::Block>>;
}

pub async fn generate_genesis(output: Option<String>) -> eyre::Result<()> {
pub fn generate_genesis(output: Option<String>) -> eyre::Result<()> {
// Read the template file
let template = include_str!("artifacts/genesis.json.tmpl");

Expand Down
Loading