From 5ba819ec06a069cd3df50a801f7e3abad7926d39 Mon Sep 17 00:00:00 2001 From: Justin Florentine Date: Tue, 26 Sep 2023 13:57:52 -0400 Subject: [PATCH] build passes Signed-off-by: Justin Florentine --- .../methods/engine/AbstractEngineForkchoiceUpdated.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/engine/AbstractEngineForkchoiceUpdated.java b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/engine/AbstractEngineForkchoiceUpdated.java index cd10acac7e4..aca6ee9dc6b 100644 --- a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/engine/AbstractEngineForkchoiceUpdated.java +++ b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/engine/AbstractEngineForkchoiceUpdated.java @@ -131,7 +131,8 @@ public JsonRpcResponse syncResponse(final JsonRpcRequestContext requestContext) } } - ValidationResult parameterValidationResult = validateParameter(forkChoice); + ValidationResult parameterValidationResult = + validateParameter(forkChoice, maybePayloadAttributes); if (!parameterValidationResult.isValid()) { return new JsonRpcSuccessResponse(requestId, parameterValidationResult); }