Skip to content

Commit

Permalink
Change order
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilchodola committed Apr 3, 2024
1 parent a7471a6 commit 59f2e40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flood/generators/object_generators/input_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def get_block_range_and_tx(nodes):

latest = get_latest_block(node_urls[0])

start_block = latest
end_block = start_block + BLOCK_RANGE
start_block = start_block + BLOCK_RANGE
end_block = latest

response = get_block_and_ensure_it_exists(node_urls, start_block)
get_block_and_ensure_it_exists(node_urls, end_block)
Expand Down

0 comments on commit 59f2e40

Please sign in to comment.