We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e33365 commit 8a85956Copy full SHA for 8a85956
2 files changed
crates/batcher/src/lib.rs
@@ -872,7 +872,6 @@ impl Batcher {
872
return Ok(());
873
};
874
875
-
876
// We don't need a batch state lock here, since if the user locks its funds
877
// after the check, some blocks should pass until he can withdraw.
878
// It is safe to do just do this here.
crates/sdk/src/verification_layer/mod.rs
@@ -140,9 +140,7 @@ pub async fn estimate_fee(
140
FeeEstimationType::Instant => {
141
estimate_fee_per_proof_with_rpc(INSTANT_MAX_FEE_BATCH_SIZE, eth_rpc_url).await
142
}
143
- FeeEstimationType::Custom(n) => {
144
- estimate_fee_per_proof_with_rpc(n, eth_rpc_url).await
145
- }
+ FeeEstimationType::Custom(n) => estimate_fee_per_proof_with_rpc(n, eth_rpc_url).await,
146
147
148
0 commit comments