From 6a62727ffb13d67b569f13f6cb62611849ce5dfd Mon Sep 17 00:00:00 2001 From: inwonkim Date: Tue, 30 Nov 2021 16:25:01 +0900 Subject: [PATCH] Set default step-limit to None --- preptools/command/proposal_setting_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preptools/command/proposal_setting_command.py b/preptools/command/proposal_setting_command.py index a27bce3..9e33fc2 100644 --- a/preptools/command/proposal_setting_command.py +++ b/preptools/command/proposal_setting_command.py @@ -240,7 +240,7 @@ def create_tx_parser() -> argparse.ArgumentParser: "--step-limit", "-s", type=str_to_int, required=False, - default="0x50000000", + default=None, dest="step_limit", help="step limit to set" )