Skip to content

Commit bf41b71

Browse files
committed
fix: cargo fmt
1 parent 5b8e5e3 commit bf41b71

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • batcher/aligned-batcher/src

batcher/aligned-batcher/src/lib.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,12 @@ impl Batcher {
583583
} else {
584584
info!("Generating non-paying data");
585585
// If the user is not required to pay, substitute their address with a pre-funded Aligned address
586-
addr = self.non_paying_config.as_ref().unwrap().replacement.address();
586+
addr = self
587+
.non_paying_config
588+
.as_ref()
589+
.unwrap()
590+
.replacement
591+
.address();
587592
// Substitute the max_fee to a high enough value to cover the gas cost of the proof
588593
let mut aux_verification_data = client_msg.verification_data.clone();
589594
aux_verification_data.max_fee = (DEFAULT_MAX_FEE_PER_PROOF * 100).into(); // 2_000 gas per proof * 100 gwei gas price (upper bound) * 100 to make sure it is enough

0 commit comments

Comments
 (0)