Skip to content
Open
65 changes: 33 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 19 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,25 @@ ssv_types = { path = "anchor/common/ssv_types" }
subnet_service = { path = "anchor/subnet_service" }
version = { path = "anchor/common/version" }

# Lighthouse commit is unstable branch `58b153cac` as of 1/19/2026
beacon_node_fallback = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
bls = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
eth2 = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
eth2_keystore = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
eth2_network_config = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
health_metrics = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
metrics = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
network_utils = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
slashing_protection = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
slot_clock = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
task_executor = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
types = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
validator_metrics = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
validator_services = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
validator_store = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
workspace_members = { git = "https://github.com/sigp/lighthouse", rev = "58b153cac" }
# TODO: Switch back to sigp/lighthouse after https://github.com/sigp/lighthouse/pull/8684 is merged.
# These changes are expected in lighthouse 8.1 release per https://github.com/sigp/lighthouse/issues/8681
# Lighthouse fork with watch-attest-sync-duties branch `8725b85c` as of 1/20/2026
beacon_node_fallback = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
bls = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
eth2 = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
eth2_keystore = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
eth2_network_config = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
health_metrics = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
metrics = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
network_utils = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
slashing_protection = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
slot_clock = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
task_executor = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
types = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
validator_metrics = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
validator_services = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
validator_store = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }
workspace_members = { git = "https://github.com/shane-moore/lighthouse", rev = "35fb9763" }

alloy = { version = "1.2.1", features = [
"sol-types",
Expand Down
1 change: 1 addition & 0 deletions anchor/client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ impl Client {
spec.clone(),
genesis_validators_root,
config.impostor.is_none().then_some(key),
fork_schedule.clone(),
config.gas_limit,
config.builder_boost_factor,
config.prefer_builder_proposals,
Expand Down
Loading