Skip to content

Commit

Permalink
Merge pull request ethereum-optimism#7962 from ethereum-optimism/ctb/…
Browse files Browse the repository at this point in the history
…internal-impl-salt

contracts-bedrock: make `implSalt()` internal
  • Loading branch information
tynes authored Nov 1, 2023
2 parents f5b0470 + ec4c4f5 commit 3144311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/scripts/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ contract Deploy is Deployer {
/// @notice The create2 salt used for deployment of the contract implementations.
/// Using this helps to reduce config across networks as the implementation
/// addresses will be the same across networks when deployed with create2.
function implSalt() public returns (bytes32) {
function implSalt() internal returns (bytes32) {
return keccak256(bytes(vm.envOr("IMPL_SALT", string("ethers phoenix"))));
}

Expand Down

0 comments on commit 3144311

Please sign in to comment.