Skip to content

Commit e96d838

Browse files
fzavaliahpmaxi
authored andcommitted
fix: Fix build
1 parent d14c0a0 commit e96d838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ynEIGEN/WithdrawalsProcessor.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ contract WithdrawalsProcessor is IWithdrawalsProcessor, Initializable, AccessCon
289289
address _delegatedTo = delegationManager.delegatedTo(_node);
290290

291291
bytes32[] memory fullWithdrawalRoots = ITokenStakingNode(_node).queueWithdrawals(_strategy, _toWithdraw);
292-
IDelegationManagerTypes.Withdrawal memory queuedWithdrawal = _delegationManager.getQueuedWithdrawal(fullWithdrawalRoots[0]);
292+
IDelegationManagerTypes.Withdrawal memory queuedWithdrawal = delegationManager.getQueuedWithdrawal(fullWithdrawalRoots[0]);
293293

294294
_queuedWithdrawals[_queuedId++] = QueuedWithdrawal(
295295
_node,
296296
address(_strategy),
297297
delegationManager.cumulativeWithdrawalsQueued(_node), // nonce
298-
queuedWithdraw.scaledShares[0],
298+
queuedWithdrawal.scaledShares[0],
299299
withdrawalQueueManager._tokenIdCounter(),
300300
uint32(block.number), // startBlock
301301
false, // completed,

0 commit comments

Comments
 (0)