Skip to content

Commit

Permalink
lint fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed May 7, 2024
1 parent 97b4731 commit 2a94722
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"import/namespace": "off",
"import/no-unresolved": "off",
"import/order": "off",
"no-console": "off",
"prettier/prettier": "off"
"no-console": "off"
},
"ignorePatterns": [
"**/lib/*"
Expand Down
6 changes: 5 additions & 1 deletion l1-contracts/test/unit_tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ export const REQUIRED_L2_GAS_PRICE_PER_PUBDATA =

/// Set of parameters that are needed to test the processing of priority operations
export class DummyOp {
constructor(public id: number, public expirationBatch: BigNumber, public layer2Tip: number) {}
constructor(
public id: number,
public expirationBatch: BigNumber,
public layer2Tip: number
) {}
}

export async function getCallRevertReason(promise) {
Expand Down
1 change: 0 additions & 1 deletion system-contracts/contracts/DefaultAccount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ contract DefaultAccount is IAccount {
assert(msg.sender != BOOTLOADER_FORMAL_ADDRESS);

// If the contract is called directly, behave like an EOA

}

receive() external payable {
Expand Down

0 comments on commit 2a94722

Please sign in to comment.