From 53faabfd5100eab9861211f55e242f2c8d5ecf79 Mon Sep 17 00:00:00 2001 From: Vaibhav Valecha Date: Tue, 29 Oct 2024 10:53:49 -0500 Subject: [PATCH] keep old event --- src/EtherFiNodesManager.sol | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/EtherFiNodesManager.sol b/src/EtherFiNodesManager.sol index 4bbd3e19..89c94e45 100644 --- a/src/EtherFiNodesManager.sol +++ b/src/EtherFiNodesManager.sol @@ -96,9 +96,8 @@ contract EtherFiNodesManager is event NodeExitProcessed(uint256 _validatorId); event NodeEvicted(uint256 _validatorId); event PhaseChanged(uint256 indexed _validatorId, IEtherFiNode.VALIDATOR_PHASE _phase); - - event PartialWithdrawal(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toTnft); - event FullWithdrawal(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toTnft, uint256 toBnft); + event PartialWithdrawal(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toOperator, uint256 toTnft, uint256 toBnft, uint256 toTreasury); + event FullWithdrawal(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toOperator, uint256 toTnft, uint256 toBnft, uint256 toTreasury); event PartialWithdrawal_V2(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toTnft); event FullWithdrawal_V2(uint256 indexed _validatorId, address indexed etherFiNode, uint256 toTnft, uint256 toBnft); event QueuedRestakingWithdrawal(uint256 indexed _validatorId, address indexed etherFiNode, bytes32[] withdrawalRoots);