Skip to content

Commit

Permalink
contracts-bedrock: default to governance being off (#13377)
Browse files Browse the repository at this point in the history
To prevent people from accidentally deploying GovToken with the same
name as OP colliding with OP Mainnet's token, turn off by default.
`op-deployer` should be doing this already, just doing this for people
who deploy through the legacy path.

See celo-org#280 (comment)
for context.
  • Loading branch information
tynes authored and sigma committed Dec 19, 2024
1 parent c1d7a89 commit 36b7248
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ contract DeployConfig is Script {
basefeeScalar = uint32(_readOr(_json, "$.gasPriceOracleBaseFeeScalar", 1368));
blobbasefeeScalar = uint32(_readOr(_json, "$.gasPriceOracleBlobBaseFeeScalar", 810949));

enableGovernance = stdJson.readBool(_json, "$.enableGovernance");
enableGovernance = _readOr(_json, "$.enableGovernance", false);
eip1559Denominator = stdJson.readUint(_json, "$.eip1559Denominator");
eip1559Elasticity = stdJson.readUint(_json, "$.eip1559Elasticity");
systemConfigStartBlock = stdJson.readUint(_json, "$.systemConfigStartBlock");
Expand Down

0 comments on commit 36b7248

Please sign in to comment.