From 86f3c01f5382765435acee7df242c34924e0f0a2 Mon Sep 17 00:00:00 2001 From: Ignasi Date: Thu, 29 Aug 2024 11:39:13 +0200 Subject: [PATCH] Move to constants --- contracts/v2/PolygonRollupManager.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/v2/PolygonRollupManager.sol b/contracts/v2/PolygonRollupManager.sol index 7a354095..85d02492 100644 --- a/contracts/v2/PolygonRollupManager.sol +++ b/contracts/v2/PolygonRollupManager.sol @@ -231,6 +231,9 @@ contract PolygonRollupManager is bytes32 internal constant _EMERGENCY_COUNCIL_ADMIN = keccak256("EMERGENCY_COUNCIL_ADMIN"); + // Current rollup manager version + string public constant ROLLUP_MANAGER_VERSION = "pessimistic"; + // Global Exit Root address IPolygonZkEVMGlobalExitRootV2 public immutable globalExitRootManager; @@ -270,9 +273,6 @@ contract PolygonRollupManager is // Last timestamp when an aggregation happen uint64 public lastAggregationTimestamp; - // Current rollup manager version - string public constant ROLLUP_MANAGER_VERSION = "pessimistic"; - // Trusted aggregator timeout, if a sequence is not verified in this time frame, // everyone can verify that sequence /// @custom:oz-renamed-from trustedAggregatorTimeout