You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UpgradeableBeacon is incorrectly detected as an upgradable implementation because it has a function with signature upgradeTo(address), which causes it to "look" like a UUPS implementation, even though this function is for the beacon itself and not related to UUPS.
lib/openzeppelin-contracts/contracts/proxy/beacon/UpgradeableBeacon.sol:UpgradeableBeacon
lib/openzeppelin-contracts/contracts/proxy/beacon/UpgradeableBeacon.sol:31: Contract `UpgradeableBeacon` has a constructor
Define an initializer instead
https://zpl.in/upgrades/error-001
lib/openzeppelin-contracts/contracts/access/Ownable.sol:38: Contract `Ownable` has a constructor
Define an initializer instead
https://zpl.in/upgrades/error-001
The text was updated successfully, but these errors were encountered:
UpgradeableBeacon is incorrectly detected as an upgradable implementation because it has a function with signature
upgradeTo(address)
, which causes it to "look" like a UUPS implementation, even though this function is for the beacon itself and not related to UUPS.Steps to reproduce:
The text was updated successfully, but these errors were encountered: