Skip to content

Commit ed3e589

Browse files
committed
fmt
1 parent 906ca55 commit ed3e589

File tree

1 file changed

+1
-4
lines changed
  • batcher/aligned-batcher/src

1 file changed

+1
-4
lines changed

batcher/aligned-batcher/src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -787,10 +787,7 @@ impl Batcher {
787787
user_balance: U256,
788788
user_max_fee: U256,
789789
) -> bool {
790-
// `user_min_fee` is the minimum `max_fee` the user submitted to the batcher
791-
// and represents the maximium price that the user will pay for each submitted proof.
792-
// We define 'user_min_fee' as an upper bound for the proof submission cost of the user,
793-
// and use it to validate the user's balance has enough fund available to pay for all submitted proofs.
790+
// `user_min_fee` is the minimum `max_fee` the user submitted to the batcher and represents the maximium price that the user will pay for each submitted proof. We define 'user_min_fee' as an upper bound for the proof submission cost of the user, and use it to validate the user's balance has enough fund available to pay for all submitted proofs.
794791
let mut min_fee = user_min_fee;
795792
if user_min_fee == U256::max_value() {
796793
min_fee = user_max_fee

0 commit comments

Comments
 (0)