Skip to content

Commit

Permalink
u128 not supported for config
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Oct 1, 2024
1 parent e2152e4 commit 9d555cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion committer/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub struct Eth {
pub state_contract_address: Address,
/// This is a workaround to get pending transactions unstuck until the tx manager task is
/// complete.
pub max_fee_per_gas_for_first_tx: Option<u128>,
pub max_fee_per_gas_for_first_tx: Option<u64>,
}

fn parse_url<'de, D>(deserializer: D) -> Result<Url, D::Error>
Expand Down
2 changes: 1 addition & 1 deletion committer/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ pub async fn l1_adapter(
config.eth.blob_pool_key_arn.clone(),
internal_config.eth_errors_before_unhealthy,
aws_client,
config.eth.max_fee_per_gas_for_first_tx,
config.eth.max_fee_per_gas_for_first_tx.map(Into::into),
)
.await?;

Expand Down

0 comments on commit 9d555cc

Please sign in to comment.