Skip to content

Commit

Permalink
Fixing format
Browse files Browse the repository at this point in the history
  • Loading branch information
eloi010 committed Nov 10, 2023
1 parent befc8a8 commit 2c0e0b4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions script/checkDeposits.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,11 @@ contract CheckDeposits is OpenfortForksConfig {
if (paymasterDeposit < 0.1 ether) {
console.log("ALERT: deposit too low on chain ID %s! Deposit: %s\n", block.chainid, paymasterDeposit);
}
}
else if (block.chainid == BEAM_MAIN) {
} else if (block.chainid == BEAM_MAIN) {
if (paymasterDeposit < 4 ether) {
console.log("ALERT: deposit too low on chain ID %s! Deposit: %s\n", block.chainid, paymasterDeposit);
}
}
else {
} else {
if (paymasterDeposit < 1 ether) {
console.log("ALERT: deposit too low on chain ID %s! Deposit: %s\n", block.chainid, paymasterDeposit);
}
Expand Down

0 comments on commit 2c0e0b4

Please sign in to comment.