Skip to content

Commit

Permalink
Change default value for --batch-size in export_traces.py
Browse files Browse the repository at this point in the history
  • Loading branch information
medvedev1088 committed Apr 13, 2019
1 parent e6c055c commit e82618d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereumetl/cli/export_traces.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
@click.command(context_settings=dict(help_option_names=['-h', '--help']))
@click.option('-s', '--start-block', default=0, type=int, help='Start block')
@click.option('-e', '--end-block', required=True, type=int, help='End block')
@click.option('-b', '--batch-size', default=100, type=int, help='The number of blocks to filter at a time.')
@click.option('-b', '--batch-size', default=5, type=int, help='The number of blocks to filter at a time.')
@click.option('-o', '--output', default='-', type=str, help='The output file. If not specified stdout is used.')
@click.option('-w', '--max-workers', default=5, type=int, help='The maximum number of workers.')
@click.option('-p', '--provider-uri', required=True, type=str,
Expand Down

0 comments on commit e82618d

Please sign in to comment.