Browse Source

Fix Solidity warning

Francisco Giordano 4 years ago
parent
commit
061e7f0da7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/mocks/BadBeacon.sol

+ 1 - 1
contracts/mocks/BadBeacon.sol

@@ -6,7 +6,7 @@ contract BadBeaconNoImpl {
 }
 }
 
 
 contract BadBeaconNotContract {
 contract BadBeaconNotContract {
-    function implementation() external view returns (address) {
+    function implementation() external pure returns (address) {
         return address(0x1);
         return address(0x1);
     }
     }
 }
 }