From 2817295a2821a18958751c8032377f8289caaf70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien?= <3535019+leruaa@users.noreply.github.com> Date: Fri, 17 Jan 2025 14:19:07 -0800 Subject: [PATCH] feat(contracts): update OP_SUCCINCT game type (#338) * feat: update OP_SUCCINCT game type * more clear comment --- contracts/src/OPSuccinctDisputeGame.sol | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contracts/src/OPSuccinctDisputeGame.sol b/contracts/src/OPSuccinctDisputeGame.sol index 6b541379..d70052f0 100644 --- a/contracts/src/OPSuccinctDisputeGame.sol +++ b/contracts/src/OPSuccinctDisputeGame.sol @@ -53,9 +53,10 @@ contract OPSuccinctDisputeGame is ISemver, CWIA, IDisputeGame { /// i.e. The game type should indicate the security model. /// @return gameType_ The type of proof system being used. function gameType() public pure returns (GameType) { - // TODO: Once the following PR https://github.com/ethereum-optimism/optimism/pull/13780 is merged, + // TODO: Once a new version of the Optimism contracts containing the PR below is released, // update this to return the correct game type: GameTypes.OP_SUCCINCT - return GameType.wrap(3); + // https://github.com/ethereum-optimism/optimism/pull/13780 + return GameType.wrap(6); } /// @notice Getter for the creator of the dispute game.