Commit df19d2be authored by Mark Tyneway's avatar Mark Tyneway

op-chain-ops: remove setting owner in GovernanceToken

We do not want to set the `_owner` field in the `GovernanceToken`.
This assumes that it is preset in the state, so it will not work
for spinning up new networks.
parent 3b1dce10
...@@ -363,8 +363,6 @@ func NewL2StorageConfig(config *DeployConfig, block *types.Block) (state.Storage ...@@ -363,8 +363,6 @@ func NewL2StorageConfig(config *DeployConfig, block *types.Block) (state.Storage
storage["GovernanceToken"] = state.StorageValues{ storage["GovernanceToken"] = state.StorageValues{
"_name": "Optimism", "_name": "Optimism",
"_symbol": "OP", "_symbol": "OP",
// TODO: this should be set to the MintManager
"_owner": common.Address{},
} }
storage["ProxyAdmin"] = state.StorageValues{ storage["ProxyAdmin"] = state.StorageValues{
"_owner": config.ProxyAdminOwner, "_owner": config.ProxyAdminOwner,
......
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