MockImplementation.sol 401 B

12345678910111213141516
  1. // contracts/Implementation.sol
  2. // SPDX-License-Identifier: Apache 2
  3. pragma solidity ^0.8.0;
  4. import "../Implementation.sol";
  5. contract MockImplementation is Implementation {
  6. function initialize() initializer public {
  7. // this function needs to be exposed for an upgrade to pass
  8. }
  9. function testNewImplementationActive() external pure returns (bool) {
  10. return true;
  11. }
  12. }