Skip to content

Commit

Permalink
function visibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcclurejt committed Aug 27, 2024
1 parent 72cac92 commit 723e3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/factory/HyperdriveCreate3Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract HyperdriveCreate3Factory {
function getDeployed(
address _deployer,
bytes32 _salt
) external view returns (address) {
) external pure returns (address) {
_salt = keccak256(abi.encodePacked(_deployer, _salt));
return CREATE3.getDeployed(_salt, _deployer);
}
Expand Down

0 comments on commit 723e3b4

Please sign in to comment.