From a094b90c0250d50962ca5ff4b5da8f9b377050e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8r=E2=88=82=C2=A1?= <4456749+brickpop@users.noreply.github.com> Date: Mon, 13 May 2024 13:26:30 +0200 Subject: [PATCH] Using the right amount of storage slots --- src/OptimisticTokenVotingPlugin.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OptimisticTokenVotingPlugin.sol b/src/OptimisticTokenVotingPlugin.sol index 3b3d5f7..d18f951 100644 --- a/src/OptimisticTokenVotingPlugin.sol +++ b/src/OptimisticTokenVotingPlugin.sol @@ -554,5 +554,5 @@ contract OptimisticTokenVotingPlugin is } /// @notice This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain (see [OpenZeppelin's guide about storage gaps](https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps)). - uint256[50] private __gap; + uint256[47] private __gap; }