This commit is contained in:
poma 2021-03-20 14:38:28 +03:00
parent 7d076e8af1
commit a8b93f6d5b
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,11 @@ contract AdminUpgradeableProxy is TransparentUpgradeableProxy {
/**
* @dev Initializes an upgradeable proxy backed by the implementation at `_logic`.
*/
constructor(address _logic, address _admin, bytes memory _data) public payable TransparentUpgradeableProxy(_logic, _admin, _data) {}
constructor(
address _logic,
address _admin,
bytes memory _data
) public payable TransparentUpgradeableProxy(_logic, _admin, _data) {}
/**
* @dev Override to allow admin access the fallback function.