Skip to content

Commit

Permalink
add _disableInitializers in Arbitrator constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
zkbenny committed Mar 8, 2024
1 parent 933e578 commit e908c4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contracts/Arbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ contract Arbitrator is IArbitrator, OwnableUpgradeable, UUPSUpgradeable, Reentra
_;
}

constructor() {
_disableInitializers();
}

function initialize() external initializer {
__Ownable_init();
__UUPSUpgradeable_init();
Expand Down

0 comments on commit e908c4d

Please sign in to comment.