We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4981dd commit 6f32282Copy full SHA for 6f32282
crates/batcher/src/lib.rs
@@ -1009,8 +1009,8 @@ impl Batcher {
1009
1010
// Validate that the max fee is at least higher or equal to the original fee + a [`min_bump_percentage`]
1011
let original_max_fee = entry.nonced_verification_data.max_fee;
1012
- let min_bump = original_max_fee
1013
- + (original_max_fee * U256::from(self.min_bump_percentage)) / U256::from(100);
+ let min_bump =
+ original_max_fee + (original_max_fee * self.min_bump_percentage) / U256::from(100);
1014
1015
if replacement_max_fee < min_bump {
1016
std::mem::drop(batch_state_lock);
0 commit comments