Skip to content

Commit 3899b01

Browse files
authored
fix: take is_l3 from cli (#496)
* fix: take is_l3 from cli * fix fmt
1 parent 029823c commit 3899b01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/core/generate-pie/src

crates/core/generate-pie/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
9898
let input = PieGenerationInput {
9999
rpc_url: cli.rpc_url.clone(),
100100
blocks: cli.blocks.clone(),
101-
chain_config: ChainConfig::new(&cli.chain, &cli.strk_fee_token_address, &cli.eth_fee_token_address, false),
101+
chain_config: ChainConfig::new(&cli.chain, &cli.strk_fee_token_address, &cli.eth_fee_token_address, cli.is_l3),
102102
os_hints_config: OsHintsConfiguration::default_with_is_l3(cli.is_l3),
103103
output_path: cli.output.clone(),
104104
layout: cli.layout,

0 commit comments

Comments
 (0)