Skip to content

Commit

Permalink
typo in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
NikZak committed Aug 20, 2024
1 parent 90bb02b commit 3d053a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EIPS/eip-7251.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def dequeue_consolidation_requests():
num_dequeued = min(num_in_queue, MAX_CONSOLIDATION_REQUESTS_PER_BLOCK)

reqs = []
for i in range(num_dequeue):
for i in range(num_dequeued):
queue_storage_slot = CONSOLIDATION_REQUEST_QUEUE_STORAGE_OFFSET + (queue_head_index + i) * 4
source_address = address(sload(CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS, queue_storage_slot)[0:20])
source_pubkey = (
Expand Down

0 comments on commit 3d053a3

Please sign in to comment.