From b88cb8ced3f41e6c0f99e427d9381876cade7213 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 22 Oct 2024 09:52:19 +1100 Subject: [PATCH] VC: use block publication v2 SSZ API (#6523) * VC: use block publication v2 SSZ API --- validator_client/src/block_service.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validator_client/src/block_service.rs b/validator_client/src/block_service.rs index 665eaf0a0f7..9903324cade 100644 --- a/validator_client/src/block_service.rs +++ b/validator_client/src/block_service.rs @@ -525,7 +525,7 @@ impl BlockService { &[metrics::BEACON_BLOCK_HTTP_POST], ); beacon_node - .post_beacon_blocks(signed_block) + .post_beacon_blocks_v2_ssz(signed_block, None) .await .or_else(|e| handle_block_post_error(e, slot, log))? } @@ -535,7 +535,7 @@ impl BlockService { &[metrics::BLINDED_BEACON_BLOCK_HTTP_POST], ); beacon_node - .post_beacon_blinded_blocks(signed_block) + .post_beacon_blinded_blocks_v2_ssz(signed_block, None) .await .or_else(|e| handle_block_post_error(e, slot, log))? }