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

Merge pull request #7518 from thanks173/fix-deployment

contracts-bedrock: fix Deploy script
parents 40a99209 1c5be5b8
...@@ -172,7 +172,7 @@ contract Deploy is Deployer { ...@@ -172,7 +172,7 @@ contract Deploy is Deployer {
? safeProxyFactory_ = new SafeProxyFactory() ? safeProxyFactory_ = new SafeProxyFactory()
: safeProxyFactory_ = SafeProxyFactory(safeProxyFactory); : safeProxyFactory_ = SafeProxyFactory(safeProxyFactory);
safeSingleton.code.length == 0 ? safeSingleton_ = new Safe() : safeSingleton_ = Safe(payable(safeSingleton_)); safeSingleton.code.length == 0 ? safeSingleton_ = new Safe() : safeSingleton_ = Safe(payable(safeSingleton));
save("SafeProxyFactory", address(safeProxyFactory_)); save("SafeProxyFactory", address(safeProxyFactory_));
save("SafeSingleton", address(safeSingleton_)); save("SafeSingleton", address(safeSingleton_));
......
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