Skip to content

Commit

Permalink
revert initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
hashxtree committed Oct 10, 2024
1 parent e57e904 commit f44febd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/LBTC/LBTC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ contract LBTC is ILBTC, ERC20PausableUpgradeable, Ownable2StepUpgradeable, Reent
_changeBurnCommission(burnCommission_);
}

function initialize(address consortium_, uint64 burnCommission_) external initializer {
function initialize(address consortium_, uint64 burnCommission_, address owner_) external initializer {
__ERC20_init("LBTC", "LBTC");
__ERC20Pausable_init();

__Ownable_init(_msgSender());
__Ownable_init(owner_);
__Ownable2Step_init();

__ReentrancyGuard_init();
Expand Down

0 comments on commit f44febd

Please sign in to comment.