()
| 391 | } |
| 392 | |
| 393 | fn test_client() -> Arc<crate::test_utils::MockEngineClient> { |
| 394 | Arc::new( |
| 395 | test_engine_client_builder() |
| 396 | .with_new_payload_v2_response(valid_payload_status()) |
| 397 | .with_fork_choice_updated_v3_response(valid_forkchoice_updated()) |
| 398 | .build(), |
| 399 | ) |
| 400 | } |
| 401 | |
| 402 | #[tokio::test] |
| 403 | async fn bedrock_payload_uses_new_payload_v2_with_no_withdrawals() { |
no test coverage detected