From 8853ed8d9b156773ed8aa0e263eebb6dd6eca961 Mon Sep 17 00:00:00 2001 From: Sherif Abdelmoatty Date: Mon, 22 Jan 2024 00:58:00 +0300 Subject: [PATCH] update gas default multiplier --- voltaire_bundler/cli_manager.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/voltaire_bundler/cli_manager.py b/voltaire_bundler/cli_manager.py index f4f259f..567a37f 100644 --- a/voltaire_bundler/cli_manager.py +++ b/voltaire_bundler/cli_manager.py @@ -253,10 +253,10 @@ def initialize_argument_parser() -> ArgumentParser: parser.add_argument( "--max_fee_per_gas_percentage_multiplier", type=unsigned_int, - help="modify the bundle max_fee_per_gas value as the following formula [bundle_max_fee_per_gas = block_max_fee_per_gas * max_fee_per_gas_percentage_multiplier /100], defaults to 100", + help="modify the bundle max_fee_per_gas value as the following formula [bundle_max_fee_per_gas = block_max_fee_per_gas * max_fee_per_gas_percentage_multiplier /100], defaults to 110", nargs="?", - const=100, - default=100, + const=110, + default=110, ) parser.add_argument( @@ -264,8 +264,8 @@ def initialize_argument_parser() -> ArgumentParser: type=unsigned_int, help="modify the bundle max_priority_fee_per_gas value as the following formula [bundle_max_priority_fee_per_gas = block_max_priority_fee_per_gas * max_priority_fee_per_gas_percentage_multiplier /100], defaults to 100", nargs="?", - const=100, - default=100, + const=110, + default=110, ) parser.add_argument(