We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb8357 commit f36d78aCopy full SHA for f36d78a
crates/ingress-rpc/src/main.rs
@@ -131,14 +131,13 @@ async fn main() -> anyhow::Result<()> {
131
address = %addr
132
);
133
134
- let rollup_args = RollupArgs {
135
- disable_txpool_gossip: true,
136
- ..Default::default()
137
- };
138
- Cli::<OpChainSpecParser, ()>::parse()
+ Cli::<OpChainSpecParser, Config>::parse()
139
.run(|builder, _| async move {
140
let exex_handle = builder
141
- .node(OpNode::new(rollup_args))
+ .node(OpNode::new(RollupArgs {
+ disable_txpool_gossip: true,
+ ..Default::default()
+ }))
142
.install_exex("tips-rpc-exex", move |ctx| async move {
143
Ok(RpcExEx::new(ctx, tx_receiver).run())
144
})
0 commit comments