From 3879e2f6f896071fc38e99cd2853a637db14c591 Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Fri, 10 Nov 2023 16:33:36 +0000 Subject: [PATCH] fix assemble --- .../ExecutionLayerBlockProductionManagerImplTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ethereum/executionlayer/src/test/java/tech/pegasys/teku/ethereum/executionlayer/ExecutionLayerBlockProductionManagerImplTest.java b/ethereum/executionlayer/src/test/java/tech/pegasys/teku/ethereum/executionlayer/ExecutionLayerBlockProductionManagerImplTest.java index 66fd5cb93bc..5ce7a694aac 100644 --- a/ethereum/executionlayer/src/test/java/tech/pegasys/teku/ethereum/executionlayer/ExecutionLayerBlockProductionManagerImplTest.java +++ b/ethereum/executionlayer/src/test/java/tech/pegasys/teku/ethereum/executionlayer/ExecutionLayerBlockProductionManagerImplTest.java @@ -41,7 +41,7 @@ import tech.pegasys.teku.spec.Spec; import tech.pegasys.teku.spec.TestSpecFactory; import tech.pegasys.teku.spec.datastructures.blocks.SignedBeaconBlock; -import tech.pegasys.teku.spec.datastructures.blocks.SignedBlindedBlockContainer; +import tech.pegasys.teku.spec.datastructures.blocks.SignedBlockContainer; import tech.pegasys.teku.spec.datastructures.builder.BuilderBid; import tech.pegasys.teku.spec.datastructures.builder.BuilderPayload; import tech.pegasys.teku.spec.datastructures.builder.ExecutionPayloadAndBlobsBundle; @@ -477,7 +477,7 @@ private BuilderPayload verifyFallbackToLocalEL( } private ExecutionPayload prepareBuilderGetPayloadResponse( - final SignedBlindedBlockContainer signedBlindedBlockContainer) { + final SignedBlockContainer signedBlindedBlockContainer) { final ExecutionPayload payload = dataStructureUtil.randomExecutionPayload(); when(builderClient.getPayload(signedBlindedBlockContainer.getSignedBlock())) .thenReturn(SafeFuture.completedFuture(new Response<>(payload))); @@ -485,7 +485,7 @@ private ExecutionPayload prepareBuilderGetPayloadResponse( } private ExecutionPayloadAndBlobsBundle prepareBuilderGetPayloadResponseWithBlobs( - final SignedBlindedBlockContainer signedBlindedBlockContainer) { + final SignedBlockContainer signedBlindedBlockContainer) { final ExecutionPayloadAndBlobsBundle payloadAndBlobsBundle = dataStructureUtil.randomExecutionPayloadAndBlobsBundle(); when(builderClient.getPayload(signedBlindedBlockContainer.getSignedBlock()))