Skip to content

Commit bef2f34

Browse files
client: correctly return request data (not including type)
1 parent dae997e commit bef2f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/src/rpc/modules/engine/util/getPayload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const blockToExecutionPayload = (
2727
const shouldOverrideBuilder = false
2828
return {
2929
executionPayload,
30-
executionRequests: requests?.map((req) => bytesToHex(req.bytes)),
30+
executionRequests: requests?.map((req) => bytesToHex(req.data)),
3131
blockValue: bigIntToHex(value),
3232
blobsBundle,
3333
shouldOverrideBuilder,

0 commit comments

Comments
 (0)