Skip to content

Commit

Permalink
review: update BatchBuilder::new docs
Browse files Browse the repository at this point in the history
Co-authored-by: Mirko <48352201+Mirko-von-Leipzig@users.noreply.github.com>
  • Loading branch information
SantiagoPittella and Mirko-von-Leipzig authored Feb 26, 2025
1 parent 728f06f commit 0d4e24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/block-producer/src/batch_builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub struct BatchBuilder {
impl BatchBuilder {
/// Creates a new [`BatchBuilder`] with the given batch prover URL.
///
/// If no URL is provided, a local batch prover is used.
/// Defaults to [`BatchProver::Local`] is no URL is provided.
pub fn new(batch_prover_url: Option<Url>) -> Self {
let batch_prover = match batch_prover_url {
Some(url) => BatchProver::new_remote(url),
Expand Down

0 comments on commit 0d4e24b

Please sign in to comment.