Skip to content

Commit

Permalink
Ignore invalidate payload tests and apply cargo sort.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Feb 26, 2025
1 parent 8bdd4b0 commit 6f2b7ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions beacon_node/beacon_chain/tests/payload_invalidation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
Expand Down
2 changes: 1 addition & 1 deletion beacon_node/http_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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 }
Expand Down

0 comments on commit 6f2b7ef

Please sign in to comment.