File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ use alloy_signer_aws::AwsSigner;
1515use alloy_signer_local:: PrivateKeySigner ;
1616use alloy_transport:: layers:: RetryBackoffLayer ;
1717use aws_sdk_kms:: config:: BehaviorVersion ;
18+ use clap:: ArgAction ;
1819use reth_chainspec:: EthChainSpec ;
1920use reth_network:: NetworkProtocols ;
2021use reth_network_api:: FullNetwork ;
@@ -520,10 +521,10 @@ impl Default for ChainOrchestratorArgs {
520521pub struct RollupNodeNetworkArgs {
521522 /// A bool to represent if new blocks should be bridged from the eth wire protocol to the
522523 /// scroll wire protocol.
523- #[ arg( long = "network.bridge" ) ]
524+ #[ arg( long = "network.bridge" , default_value_t = true , action = ArgAction :: Set ) ]
524525 pub enable_eth_scroll_wire_bridge : bool ,
525526 /// A bool that represents if the scroll wire protocol should be enabled.
526- #[ arg( long = "network.scroll-wire" ) ]
527+ #[ arg( long = "network.scroll-wire" , default_value_t = true , action = ArgAction :: Set ) ]
527528 pub enable_scroll_wire : bool ,
528529 /// The URL for the Sequencer RPC. (can be both HTTP and WS)
529530 #[ arg(
You can’t perform that action at this time.
0 commit comments