Remove inheritance that conflicts with upgradeable transpiler
This commit is contained in:
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user