From 6f2b7ef60f9ddb99f4e62a6229a6566724e7ba26 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Wed, 26 Feb 2025 17:34:37 +1100 Subject: [PATCH] Ignore invalidate payload tests and apply cargo sort. --- beacon_node/beacon_chain/tests/payload_invalidation.rs | 6 ++++++ beacon_node/http_api/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/tests/payload_invalidation.rs b/beacon_node/beacon_chain/tests/payload_invalidation.rs index 01b790bb25b..1cb9f95f553 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 7bd4807cc99..27e5932ae0a 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 }