From 8804fe782f2903abe7696402379e33b7765bf280 Mon Sep 17 00:00:00 2001 From: aapsi Date: Tue, 13 May 2025 18:34:15 +0530 Subject: [PATCH] fix variable name typo in withdrawal requests dequeue function --- EIPS/eip-7002.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-7002.md b/EIPS/eip-7002.md index 695ac757472b9b..3d35973a6956d6 100644 --- a/EIPS/eip-7002.md +++ b/EIPS/eip-7002.md @@ -196,7 +196,7 @@ def dequeue_withdrawal_requests(): num_dequeued = min(num_in_queue, MAX_WITHDRAWAL_REQUESTS_PER_BLOCK) reqs = [] - for i in range(num_dequeue): + for i in range(num_dequeued): queue_storage_slot = WITHDRAWAL_REQUEST_QUEUE_STORAGE_OFFSET + (queue_head_index + i) * 3 source_address = address(sload(WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS, queue_storage_slot)[0:20]) validator_pubkey = (