Skip to content

Commit 717926b

Browse files
committed
fix: not optional
1 parent 2280e57 commit 717926b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ pub struct BuilderConfig {
7575
)]
7676
pub quincey_url: Cow<'static, str>,
7777
/// Port for the Builder server.
78-
#[from_env(var = "BUILDER_PORT", desc = "Port for the Builder server", optional)]
79-
pub builder_port: Option<u16>,
78+
#[from_env(var = "BUILDER_PORT", desc = "Port for the Builder server")]
79+
pub builder_port: u16,
8080
/// Key to access Sequencer Wallet - AWS Key ID _OR_ local private key.
8181
/// Set IFF using local Sequencer signing instead of remote Quincey signing.
8282
#[from_env(

0 commit comments

Comments
 (0)