From 55964b9b9d54ed2ebd6795d32104bab885f58bd4 Mon Sep 17 00:00:00 2001 From: wadealexc Date: Thu, 12 Oct 2023 20:31:29 +0000 Subject: [PATCH] Clarify comment in processFullWithdrawal --- src/contracts/pods/EigenPod.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/contracts/pods/EigenPod.sol b/src/contracts/pods/EigenPod.sol index 7a44c6169..f3b6d41ec 100644 --- a/src/contracts/pods/EigenPod.sol +++ b/src/contracts/pods/EigenPod.sol @@ -654,9 +654,9 @@ contract EigenPod is IEigenPod, Initializable, ReentrancyGuardUpgradeable, Eigen withdrawableRestakedExecutionLayerGwei += amountToQueueGwei; /** - * Next, calculate the change in number of shares this validator is backing. - * - Anything immediately withdrawn isn't being backed - * - Anything that needs to go through the withdrawal queue is backed + * Next, calculate the change in number of shares this validator is "backing": + * - Anything that needs to go through the withdrawal queue IS backed + * - Anything immediately withdrawn IS NOT backed * * This means that this validator is currently backing `amountToQueueGwei` shares. */