Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/el/ethrex/ethrex_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ def get_config(
)
)

if network_params.gas_limit > 0:
cmd.append("--block-producer.gas-limit={0}".format(network_params.gas_limit))

if len(participant.el_extra_params) > 0:
# this is a repeated<proto type>, we convert it into Starlark
cmd.extend([param for param in participant.el_extra_params])
Expand Down
Loading