Skip to content

Commit

Permalink
fix: TestProxy.contractMethod() can be pure (#172)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Goulding <[email protected]>
  • Loading branch information
ryandgoulding authored Jan 9, 2024
1 parent fa01129 commit 9ecfd78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/devtools-evm-hardhat-test/contracts/TestProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Proxied } from "hardhat-deploy/solc_0.8/proxy/Proxied.sol";
contract TestProxy is Initializable, Proxied {
function initialize() public proxied initializer {}

function contractMethod() public view returns (uint256 something) {
function contractMethod() public pure returns (uint256 something) {
something = 100;
}
}

0 comments on commit 9ecfd78

Please sign in to comment.