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
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub struct ProofArgs {
)]
pub network: NetworkArg,
#[clap(
name = "Payment send to the BatcherServicContract to fund Proof submission (Wei)",
name = "Payment sent to the BatcherServiceContract to fund Proof submission (Wei)",
long = "batcher-payment",
default_value("4000000000000000")
)]
Expand Down Expand Up @@ -153,12 +153,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 Expand Up @@ -307,4 +307,4 @@ fn save_response(
);

Ok(())
}
}