Commit 31443118 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #7962 from ethereum-optimism/ctb/internal-impl-salt

contracts-bedrock: make `implSalt()` internal
  
parents f5b0470d ec4c4f50
...@@ -97,7 +97,7 @@ contract Deploy is Deployer { ...@@ -97,7 +97,7 @@ contract Deploy is Deployer {
/// @notice The create2 salt used for deployment of the contract implementations. /// @notice The create2 salt used for deployment of the contract implementations.
/// Using this helps to reduce config across networks as the implementation /// Using this helps to reduce config across networks as the implementation
/// addresses will be the same across networks when deployed with create2. /// 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")))); return keccak256(bytes(vm.envOr("IMPL_SALT", string("ethers phoenix"))));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment