Skip to content

Commit

Permalink
fix: implementations can be initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
easonchan17 committed Feb 29, 2024
1 parent ac8546e commit 36186b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contracts/lockers/LockersLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ contract LockersLogic is LockersStorageStructure, ILockers,
using LockersLib for *;
using SafeERC20 for IERC20;

constructor() {
_disableInitializers();
}

function initialize(
address _coreBTC,
address _priceOracle,
Expand Down

0 comments on commit 36186b7

Please sign in to comment.