Skip to content

Commit

Permalink
fix: test max da gas price
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Jan 9, 2025
1 parent 22ab690 commit 261045f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests/gas_price.rs
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ fn node_config_with_da_committer_url(url: &str) -> Config {
let starting_gas_price = 10_000_000;
node_config.block_producer.coinbase_recipient = Some([5; 32].into());
node_config.min_da_gas_price = starting_gas_price;
node_config.max_da_gas_price = starting_gas_price + 1;
node_config.max_da_gas_price = u64::MAX;
node_config.max_da_gas_price_change_percent = 15;
node_config.block_production = Trigger::Never;
node_config.da_committer_url = Some(url.to_string());
Expand Down

0 comments on commit 261045f

Please sign in to comment.