Skip to content

Commit

Permalink
add network
Browse files Browse the repository at this point in the history
  • Loading branch information
zsluedem committed Dec 1, 2022
1 parent b0fad50 commit ed80b10
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/bundler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use anyhow::Result;
use clap::Parser;
use expanded_pathbuf::ExpandedPathBuf;
use jsonrpsee::{core::server::rpc_module::Methods, server::ServerBuilder, tracing::info};
use std::{future::pending, panic};
use std::{future::pending, net::SocketAddr, panic};

#[derive(Parser)]
#[clap(
Expand All @@ -32,6 +32,10 @@ pub struct Opt {
#[clap(long, default_value = "127.0.0.1:4337")]
pub rpc_listen_address: String,

// execution client rpc endpoint
#[clap(long)]
pub network: SocketAddr,

#[clap(flatten)]
pub bundler_opts: aa_bundler::bundler::bundler::BundlerOpts,
}
Expand Down

0 comments on commit ed80b10

Please sign in to comment.