Skip to content

Commit

Permalink
fix: tune Besu options to work with tx_spammer
Browse files Browse the repository at this point in the history
  • Loading branch information
fab-10 committed May 14, 2024
1 parent b96e502 commit 689d259
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/tests/besu-all.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
participants:
- el_type: geth
cl_type: teku
- el_type: geth
cl_type: teku
- el_type: besu
cl_type: prysm
- el_type: besu
cl_type: teku
- el_type: besu
cl_type: nimbus
- el_type: besu
cl_type: lighthouse
- el_type: besu
cl_type: lodestar
additional_services: []
- el_type: besu
cl_type: grandine
additional_services:
- tx_spammer
2 changes: 2 additions & 0 deletions src/el/besu/besu_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ def get_config(
"--rpc-http-port={0}".format(RPC_PORT_NUM),
"--rpc-http-api=ADMIN,CLIQUE,ETH,NET,DEBUG,TXPOOL,ENGINE,TRACE,WEB3",
"--rpc-http-cors-origins=*",
"--rpc-http-max-active-connections=300",
"--rpc-ws-enabled=true",
"--rpc-ws-host=0.0.0.0",
"--rpc-ws-port={0}".format(WS_PORT_NUM),
Expand All @@ -225,6 +226,7 @@ def get_config(
"--metrics-enabled=true",
"--metrics-host=0.0.0.0",
"--metrics-port={0}".format(METRICS_PORT_NUM),
"--min-gas-price=1000000000",
]
if (
network not in constants.PUBLIC_NETWORKS
Expand Down

0 comments on commit 689d259

Please sign in to comment.