Skip to content

Commit

Permalink
update gas default multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifahmed990 committed Jan 21, 2024
1 parent a0a5995 commit 8853ed8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions voltaire_bundler/cli_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,19 +253,19 @@ 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(
"--max_priority_fee_per_gas_percentage_multiplier",
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(
Expand Down

0 comments on commit 8853ed8

Please sign in to comment.