diff --git a/src/storage/ExoCapsuleStorage.sol b/src/storage/ExoCapsuleStorage.sol index 20a273c9..8fa1011e 100644 --- a/src/storage/ExoCapsuleStorage.sol +++ b/src/storage/ExoCapsuleStorage.sol @@ -11,6 +11,7 @@ contract ExoCapsuleStorage { UNREGISTERED, // the validator has not been registered in this ExoCapsule REGISTERED, // staked on ethpos and withdrawal credentials are pointed to the ExoCapsule WITHDRAWN // withdrawn from the Beacon Chain + } struct Validator { diff --git a/test/foundry/DepositWithdrawPrinciple.t.sol b/test/foundry/DepositWithdrawPrinciple.t.sol index aed9b2b6..dfc22fca 100644 --- a/test/foundry/DepositWithdrawPrinciple.t.sol +++ b/test/foundry/DepositWithdrawPrinciple.t.sol @@ -2,8 +2,9 @@ pragma solidity ^0.8.19; import "../../src/core/ExoCapsule.sol"; import "../../src/core/ExocoreGateway.sol"; -import {ILSTRestakingController} from "../../src/interfaces/ILSTRestakingController.sol"; + import {IExoCapsule} from "../../src/interfaces/IExoCapsule.sol"; +import {ILSTRestakingController} from "../../src/interfaces/ILSTRestakingController.sol"; import "../../src/storage/GatewayStorage.sol"; import "./ExocoreDeployer.t.sol"; import "forge-std/Test.sol";