From 8683cb3813d96a107081e8ccb59d2f0fddc8dc74 Mon Sep 17 00:00:00 2001 From: Kartik Chopra Date: Sun, 26 Jan 2025 14:08:05 -0500 Subject: [PATCH 1/2] chore: commit new dependency --- contracts/lib/openzeppelin-upgrades | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/lib/openzeppelin-upgrades b/contracts/lib/openzeppelin-upgrades index 08c6cd4f7..696e20f37 160000 --- a/contracts/lib/openzeppelin-upgrades +++ b/contracts/lib/openzeppelin-upgrades @@ -1 +1 @@ -Subproject commit 08c6cd4f789338617c19e8165b73c7084b11b45c +Subproject commit 696e20f37d9fb61ba26ae4a7bac2cecd907d3835 From bcf3d1532f45f55de8367a93f5f25133d29af375 Mon Sep 17 00:00:00 2001 From: Kartik Chopra Date: Sun, 26 Jan 2025 22:32:56 -0500 Subject: [PATCH 2/2] feat: call pausable initilaizer --- contracts/contracts/validator-registry/VanillaRegistry.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/contracts/validator-registry/VanillaRegistry.sol b/contracts/contracts/validator-registry/VanillaRegistry.sol index 2f9e35a75..c788a05a2 100644 --- a/contracts/contracts/validator-registry/VanillaRegistry.sol +++ b/contracts/contracts/validator-registry/VanillaRegistry.sol @@ -46,6 +46,7 @@ contract VanillaRegistry is IVanillaRegistry, VanillaRegistryStorage, uint256 _slashingPayoutPeriodBlocks, address _owner ) external initializer { + __Pausable_init(); _setMinStake(_minStake); _setSlashOracle(_slashOracle); _setUnstakePeriodBlocks(_unstakePeriodBlocks);