mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-29 02:33:48 +00:00
Fix validator manager compilation (#9187)
Currently, running `cargo check -p validator_manager` fails due to missing features. Although the `validator_manager` will almost always be called through the Lighthouse binary which will enable the required features, it is still good hygiene to ensure all workspace crates can compile standalone. Add the `lighthouse` feature to the `eth2` dependency in `validator_manager` Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
@@ -11,7 +11,7 @@ clap = { workspace = true }
|
||||
clap_utils = { workspace = true }
|
||||
educe = { workspace = true }
|
||||
environment = { workspace = true }
|
||||
eth2 = { workspace = true }
|
||||
eth2 = { workspace = true, features = ["lighthouse"] }
|
||||
eth2_network_config = { workspace = true }
|
||||
eth2_wallet = { workspace = true }
|
||||
ethereum_serde_utils = { workspace = true }
|
||||
|
||||
Reference in New Issue
Block a user