-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove all use of the delayed withdrawal router
* modify activateRestaking flow to use checkpointing * remove withdrawNonBeaconChainETHBalanceWei in favor of checkpointing
- Loading branch information
Showing
6 changed files
with
197 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ abstract contract EigenPodStorage is IEigenPod { | |
mapping(bytes32 => ValidatorInfo) internal _validatorPubkeyHashToInfo; | ||
|
||
/// @notice This variable tracks any ETH deposited into this contract via the `receive` fallback function | ||
uint256 public nonBeaconChainETHBalanceWei; | ||
uint256 internal __deprecated_nonBeaconChainETHBalanceWei; | ||
Check warning Code scanning / Slither State variables that could be declared constant Warning
EigenPodStorage.__deprecated_nonBeaconChainETHBalanceWei should be constant
|
||
|
||
/// @notice This variable tracks the total amount of partial withdrawals claimed via merkle proofs prior to a switch to ZK proofs for claiming partial withdrawals | ||
uint64 __deprecated_sumOfPartialWithdrawalsClaimedGwei; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.