diff --git a/beacon_node/beacon_chain/tests/payload_invalidation.rs b/beacon_node/beacon_chain/tests/payload_invalidation.rs index 01b790bb25..1cb9f95f55 100644 --- a/beacon_node/beacon_chain/tests/payload_invalidation.rs +++ b/beacon_node/beacon_chain/tests/payload_invalidation.rs @@ -471,11 +471,17 @@ async fn immediate_forkchoice_update_payload_invalid() { } #[tokio::test] +#[ignore] +// test ignored due to lifting this restriction to rescue holesky +// https://github.com/sigp/lighthouse/pull/7041/commits/19fc31a75be727ff811f54c249db19159003e90b async fn immediate_forkchoice_update_payload_invalid_block_hash() { immediate_forkchoice_update_invalid_test(|_| Payload::InvalidBlockHash).await } #[tokio::test] +#[ignore] +// test ignored due to lifting this restriction to rescue holesky +// https://github.com/sigp/lighthouse/pull/7041/commits/19fc31a75be727ff811f54c249db19159003e90b async fn immediate_forkchoice_update_payload_invalid_terminal_block() { immediate_forkchoice_update_invalid_test(|_| Payload::Invalid { latest_valid_hash: Some(ExecutionBlockHash::zero()), diff --git a/beacon_node/http_api/Cargo.toml b/beacon_node/http_api/Cargo.toml index 7bd4807cc9..27e5932ae0 100644 --- a/beacon_node/http_api/Cargo.toml +++ b/beacon_node/http_api/Cargo.toml @@ -28,6 +28,7 @@ metrics = { workspace = true } network = { workspace = true } operation_pool = { workspace = true } parking_lot = { workspace = true } +proto_array = { workspace = true } rand = { workspace = true } safe_arith = { workspace = true } sensitive_url = { workspace = true } @@ -46,7 +47,6 @@ tree_hash = { workspace = true } types = { workspace = true } warp = { workspace = true } warp_utils = { workspace = true } -proto_array = { workspace = true } [dev-dependencies] genesis = { workspace = true }