From 260f6deb3519f7c5e16f0c31e76262aea4f173ad Mon Sep 17 00:00:00 2001 From: call-by Date: Mon, 15 Jul 2024 11:54:19 -0400 Subject: [PATCH] fix: update reentrancy guard import --- src/core/ExoCapsule.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ExoCapsule.sol b/src/core/ExoCapsule.sol index 056b4b1b..7eb1d1f0 100644 --- a/src/core/ExoCapsule.sol +++ b/src/core/ExoCapsule.sol @@ -10,7 +10,7 @@ import {WithdrawalContainer} from "../libraries/WithdrawalContainer.sol"; import {ExoCapsuleStorage} from "../storage/ExoCapsuleStorage.sol"; import {IBeaconChainOracle} from "@beacon-oracle/contracts/src/IBeaconChainOracle.sol"; -import {ReentrancyGuardUpgradeable} from "@openzeppelin-upgradeable/contracts/utils/ReentrancyGuardUpgradeable.sol"; +import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; contract ExoCapsule is ReentrancyGuardUpgradeable, ExoCapsuleStorage, IExoCapsule {