Skip to content

Commit

Permalink
refactor: remove redundant export
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Sep 27, 2023
1 parent db7c925 commit e4f3fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts/test/core/permission/permission-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ const RESTRICTED_PERMISSIONS_FOR_ANY_ADDR = [
ethers.utils.id('TEST_PERMISSION_2'),
];

export const UNSET_FLAG = ethers.utils.getAddress(
const UNSET_FLAG = ethers.utils.getAddress(
'0x0000000000000000000000000000000000000000'
);
export const ALLOW_FLAG = ethers.utils.getAddress(
const ALLOW_FLAG = ethers.utils.getAddress(
'0x0000000000000000000000000000000000000002'
);
export const ANY_ADDR = '0xffffffffffffffffffffffffffffffffffffffff';
Expand Down

0 comments on commit e4f3fc2

Please sign in to comment.