Remove inheritance that conflicts with upgradeable transpiler

This commit is contained in:
Francisco Giordano
2020-11-30 16:31:42 -03:00
parent 60c8b0e02f
commit fa65bf89be

View File

@ -2,13 +2,11 @@
pragma solidity >=0.6.0 <0.8.0; pragma solidity >=0.6.0 <0.8.0;
import "../proxy/IBeacon.sol";
contract BadBeaconNoImpl { contract BadBeaconNoImpl {
} }
contract BadBeaconNotContract is IBeacon { contract BadBeaconNotContract {
function implementation() external view override returns (address) { function implementation() external view returns (address) {
return address(0x1); return address(0x1);
} }
} }