Skip to content

Commit

Permalink
fix: network params setting invalid value for min/max configs (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Nov 6, 2023
1 parent 2c3b6a2 commit 764b7dc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 24 deletions.
1 change: 1 addition & 0 deletions .github/workflows/per-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
"./.github/tests/mev.yaml",
"./.github/tests/mev-mock.yaml",
"./.github/tests/mix-with-tools.yaml",
"./network_params.yaml"
]
runs-on: ubuntu-latest
steps:
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,18 @@ participants:
# CPU is milicores
# RAM is in MB
# Defaults are set per client
el_min_cpu: ''
el_max_cpu: ''
el_min_mem: ''
el_max_mem: ''
bn_min_cpu: ''
bn_max_cpu: ''
bn_min_mem: ''
bn_max_mem: ''
v_min_cpu: ''
v_max_cpu: ''
v_min_mem: ''
v_max_mem: ''
el_min_cpu: 0
el_max_cpu: 0
el_min_mem: 0
el_max_mem: 0
bn_min_cpu: 0
bn_max_cpu: 0
bn_min_mem: 0
bn_max_mem: 0
v_min_cpu: 0
v_max_cpu: 0
v_min_mem: 0
v_max_mem: 0
# Snooper can be enabled with the `snooper_enabled` flag per client or globally
# Defaults to false
Expand Down
24 changes: 12 additions & 12 deletions network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ participants:
validator_count: null
snooper_enabled: false
ethereum_metrics_exporter_enabled: false
el_min_cpu: ''
el_max_cpu: ''
el_min_mem: ''
el_max_mem: ''
bn_min_cpu: ''
bn_max_cpu: ''
bn_min_mem: ''
bn_max_mem: ''
v_min_cpu: ''
v_max_cpu: ''
v_min_mem: ''
v_max_mem: ''
el_min_cpu: 0
el_max_cpu: 0
el_min_mem: 0
el_max_mem: 0
bn_min_cpu: 0
bn_max_cpu: 0
bn_min_mem: 0
bn_max_mem: 0
v_min_cpu: 0
v_max_cpu: 0
v_min_mem: 0
v_max_mem: 0
count: 2
network_params:
network_id: '3151908'
Expand Down

0 comments on commit 764b7dc

Please sign in to comment.