Skip to content

Commit cceab25

Browse files
committed
fmt
1 parent 70fe067 commit cceab25

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/config.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ pub struct BuilderConfig {
5858
/// The chain ID of the host chain.
5959
#[from_env(var = "HOST_CHAIN_ID", desc = "The chain ID of the host chain")]
6060
pub host_chain_id: u64,
61-
61+
6262
/// The chain ID of the rollup chain.
6363
#[from_env(var = "RU_CHAIN_ID", desc = "The chain ID of the rollup chain")]
6464
pub ru_chain_id: u64,
65-
65+
6666
/// URL for Host RPC node.
6767
#[from_env(var = "HOST_RPC_URL", desc = "URL for Host RPC node", infallible)]
6868
pub host_rpc_url: Cow<'static, str>,
69-
69+
7070
/// URL for the Rollup RPC node.
7171
#[from_env(var = "ROLLUP_RPC_URL", desc = "URL for Rollup RPC node", infallible)]
7272
pub ru_rpc_url: Cow<'static, str>,
73-
73+
7474
/// URL of the tx pool to poll for incoming transactions.
7575
#[from_env(
7676
var = "TX_POOL_URL",
@@ -89,18 +89,18 @@ pub struct BuilderConfig {
8989
optional
9090
)]
9191
pub tx_broadcast_urls: Vec<Cow<'static, str>>,
92-
92+
9393
/// Address of the Zenith contract on Host.
9494
#[from_env(var = "ZENITH_ADDRESS", desc = "address of the Zenith contract on Host")]
9595
pub zenith_address: Address,
96-
96+
9797
/// Address of the Builder Helper contract on Host.
9898
#[from_env(
9999
var = "BUILDER_HELPER_ADDRESS",
100100
desc = "address of the Builder Helper contract on Host"
101101
)]
102102
pub builder_helper_address: Address,
103-
103+
104104
/// URL for remote Quincey Sequencer server to sign blocks.
105105
/// NB: Disregarded if a sequencer_signer is configured.
106106
#[from_env(
@@ -113,7 +113,7 @@ pub struct BuilderConfig {
113113
/// Port for the Builder server.
114114
#[from_env(var = "BUILDER_PORT", desc = "Port for the Builder server")]
115115
pub builder_port: u16,
116-
116+
117117
/// Key to access Sequencer Wallet - AWS Key ID _OR_ local private key.
118118
/// Set IFF using local Sequencer signing instead of remote Quincey signing.
119119
#[from_env(
@@ -138,7 +138,7 @@ pub struct BuilderConfig {
138138
desc = "Address on Rollup to which Builder will receive user transaction fees"
139139
)]
140140
pub builder_rewards_address: Address,
141-
141+
142142
/// Gas limit for RU block.
143143
/// NOTE: a "smart" builder would determine this programmatically by simulating the block.
144144
#[from_env(var = "ROLLUP_BLOCK_GAS_LIMIT", desc = "Gas limit for RU block")]

0 commit comments

Comments
 (0)