Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/prooflab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ pub async fn submit_proof_to_aligned(
})?;

let format_max_fee = format_units(max_fee, "ether").map_err(|e| {
error!("Unable to convert estimated proof submision price");
error!("Unable to convert estimated proof submission price");
SubmitError::GenericError(e.to_string())
})?;

let format_user_balance = format_units(user_balance, "ether").map_err(|e| {
error!("Unable to convert estimated proof submision price");
error!("Unable to convert estimated proof submission price");
SubmitError::GenericError(e.to_string())
})?;

Expand Down