From 3e0d372794c1dbca402277e32626868e842c54b2 Mon Sep 17 00:00:00 2001 From: owen-eth Date: Wed, 12 Nov 2025 20:05:20 -0500 Subject: [PATCH] updated VanillaRegistry storage for upgrade compatabilty --- .../contracts/validator-registry/VanillaRegistryStorage.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/contracts/validator-registry/VanillaRegistryStorage.sol b/contracts/contracts/validator-registry/VanillaRegistryStorage.sol index b9b3f5775..bad13a36a 100644 --- a/contracts/contracts/validator-registry/VanillaRegistryStorage.sol +++ b/contracts/contracts/validator-registry/VanillaRegistryStorage.sol @@ -30,5 +30,5 @@ contract VanillaRegistryStorage { mapping(address staker => bool whitelisted) public whitelistedStakers; /// @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/writing-upgradeable#storage-gaps - uint256[48] private __gap; + uint256[47] private __gap; }