Skip to content

Commit

Permalink
Set proper default for daCommitmentType
Browse files Browse the repository at this point in the history
  • Loading branch information
trianglesphere committed May 23, 2024
1 parent 16010a3 commit abcfa27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/scripts/DeployConfig.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ contract DeployConfig is Script {
preimageOracleChallengePeriod = stdJson.readUint(_json, "$.preimageOracleChallengePeriod");

usePlasma = _readOr(_json, "$.usePlasma", false);
daCommitmentType = _readOr(_json, "$.daCommitmentType", 1000);
daCommitmentType = _readOr(_json, "$.daCommitmentType", 0);
daChallengeWindow = _readOr(_json, "$.daChallengeWindow", 1000);
daResolveWindow = _readOr(_json, "$.daResolveWindow", 1000);
daBondSize = _readOr(_json, "$.daBondSize", 1000000000);
Expand Down

0 comments on commit abcfa27

Please sign in to comment.