Commit 1fa31d73 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix text coloring bug

Github seems to have issues with whatever library they
are using to apply colors to the code for solidity code.
The `'` triggers it to think that it is in a string when
it is not actually in a string because the `'` is wrapped
within two `"`. Just delete the `'` to fix this issue.
The create2 salt is already not completely standard but
it should become standard when we finally have tooling
to easily add a chain to the superchain through the
deploy script, this entrypoint would deploy the proxies
and initialize them to the standard implementations.
parent f8be8695
...@@ -97,7 +97,7 @@ contract Deploy is Deployer { ...@@ -97,7 +97,7 @@ contract Deploy is Deployer {
/// 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() public returns (bytes32) {
return keccak256(bytes(vm.envOr("IMPL_SALT", string("ether's phoenix")))); return keccak256(bytes(vm.envOr("IMPL_SALT", string("ethers phoenix"))));
} }
/// @notice Modifier that wraps a function in broadcasting. /// @notice Modifier that wraps a function in broadcasting.
......
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