Skip to content

Commit 8a85956

Browse files
committed
fmt
1 parent 0e33365 commit 8a85956

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

crates/batcher/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,6 @@ impl Batcher {
872872
return Ok(());
873873
};
874874

875-
876875
// We don't need a batch state lock here, since if the user locks its funds
877876
// after the check, some blocks should pass until he can withdraw.
878877
// It is safe to do just do this here.

crates/sdk/src/verification_layer/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,7 @@ pub async fn estimate_fee(
140140
FeeEstimationType::Instant => {
141141
estimate_fee_per_proof_with_rpc(INSTANT_MAX_FEE_BATCH_SIZE, eth_rpc_url).await
142142
}
143-
FeeEstimationType::Custom(n) => {
144-
estimate_fee_per_proof_with_rpc(n, eth_rpc_url).await
145-
}
143+
FeeEstimationType::Custom(n) => estimate_fee_per_proof_with_rpc(n, eth_rpc_url).await,
146144
}
147145
}
148146

0 commit comments

Comments
 (0)