Skip to content

Commit

Permalink
fix default gas prices
Browse files Browse the repository at this point in the history
  • Loading branch information
nibty committed Jan 25, 2024
1 parent c55d801 commit 3d1234d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/networksimulator/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
argparser.add_argument(dest="num_txs", nargs='?', type=int, const=1, default=1000, help="Number of transactions to send")
argparser.add_argument('--no-wait', action="store_true", default=False, help="Don't wait for tx receipt")
argparser.add_argument('--gas', type=int, default=21000)
argparser.add_argument('--max-gas-fee', type=int, default=100, help="in gwei")
argparser.add_argument('--max-gas-priority-fee', type=int, default=20, help="in gwei")
argparser.add_argument('--max-gas-fee', type=int, help="in gwei")
argparser.add_argument('--max-gas-priority-fee', type=int, help="in gwei")
argparser.add_argument('--value', type=int, default=1, help="in ether")
argparser.add_argument('--help', '-h', action="store_true", help="show this help message and exit")

Expand Down

0 comments on commit 3d1234d

Please sign in to comment.