From a142542ef935d260993de55b99c14d17118630b3 Mon Sep 17 00:00:00 2001 From: yongchand Date: Thu, 28 Jul 2022 13:22:26 +0900 Subject: [PATCH] Fix typo in export receipts and logs --- ethereumetl/cli/export_receipts_and_logs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereumetl/cli/export_receipts_and_logs.py b/ethereumetl/cli/export_receipts_and_logs.py index 02008c73d..95ff491a8 100644 --- a/ethereumetl/cli/export_receipts_and_logs.py +++ b/ethereumetl/cli/export_receipts_and_logs.py @@ -46,7 +46,7 @@ help='The output file for receipts. If not provided receipts will not be exported. Use "-" for stdout') @click.option('--logs-output', default=None, show_default=True, type=str, help='The output file for receipt logs. ' - 'aIf not provided receipt logs will not be exported. Use "-" for stdout') + 'If not provided receipt logs will not be exported. Use "-" for stdout') @click.option('-c', '--chain', default='ethereum', show_default=True, type=str, help='The chain network to connect to.') def export_receipts_and_logs(batch_size, transaction_hashes, provider_uri, max_workers, receipts_output, logs_output, chain='ethereum'):