You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using lcli --spec minimal interop-genesis creates a genesis state that isn't parsed by lighthouse bn --spec minimal. I'm using the minimal spec for testing purposes.
lcli --spec mainnet interop-genesisdoes work as expected.
## Issue Addressed
Fixes#1552
## Proposed Changes
Earlier, we were always loading the hardcoded default testnet config which is a mainnet spec. So running lighthouse with `--spec` option anything other than mainnet gave errors because we tried loading a mainnet genesis spec with `minimal`/`interop` flags.
This PR fixes the order of loading such that we load the hardcoded default spec only if neither `--testnet` and `--testnet-dir` flags are present.
Description
Using
lcli --spec minimal interop-genesis
creates a genesis state that isn't parsed bylighthouse bn --spec minimal
. I'm using the minimal spec for testing purposes.lcli --spec mainnet interop-genesis
does work as expected.Version
master
ebb25b5Present Behaviour
Expected Behaviour
I expect the beacon node to start up with a minimal genesis state.
The text was updated successfully, but these errors were encountered: