Skip to content

Commit

Permalink
fix: get volume size recommendations when in shadowfork mode (#820)
Browse files Browse the repository at this point in the history
config:
```yaml
network_params:
  network: "holesky-shadowfork"
persistent: true
```

fixes

```
There was an error interpreting Starlark code
Evaluation error: key "holesky-shadowfork" not in dict
        at [github.com/ethpandaops/ethereum-package/main.star:143:55]: run
        at [github.com/ethpandaops/ethereum-package/src/participant_network.star:134:48]: launch_participant_network
        at [github.com/ethpandaops/ethereum-package/src/el/el_launcher.star:130:35]: launch
        at [github.com/ethpandaops/ethereum-package/src/el/geth/geth_launcher.star:59:24]: launch
        at [github.com/ethpandaops/ethereum-package/src/el/geth/geth_launcher.star:298:39]: get_config

Error encountered running Starlark code.
```
  • Loading branch information
skylenet authored Oct 31, 2024
1 parent 2494022 commit b1f27c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/package_io/constants.star
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,6 @@ VOLUME_SIZE = {
"grandine_volume_size": 1000, # 1GB
},
}
VOLUME_SIZE["mainnet-shadowfork"] = VOLUME_SIZE["mainnet"]
VOLUME_SIZE["sepolia-shadowfork"] = VOLUME_SIZE["sepolia"]
VOLUME_SIZE["holesky-shadowfork"] = VOLUME_SIZE["holesky"]

0 comments on commit b1f27c6

Please sign in to comment.