Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eosetl/cli/export_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def is_date_range(start, end):

def is_block_range(start, end):
"""Checks for a valid block number."""
return (start.isdigit() and 0 <= int(start) <= 99999999
and end.isdigit() and 0 <= int(end) <= 99999999)
return (start.isdigit() and 0 <= int(start) <= 999999999
and end.isdigit() and 0 <= int(end) <= 999999999)


def get_partitions(start, end, partition_batch_size, provider_uri):
Expand Down