Skip to content

Commit

Permalink
block_building: Fix Request format in getPayload
Browse files Browse the repository at this point in the history
  • Loading branch information
somnathb1 committed Feb 11, 2025
1 parent 4f24e43 commit 3206407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbo/execution/eth1/block_building.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func (e *EthereumExecutionModule) GetAssembledBlock(ctx context.Context, req *ex
requestsBundle = &types2.RequestsBundle{}
requests := make([][]byte, 0)
for _, r := range blockWithReceipts.Requests {
requests = append(requests, r.RequestData)
requests = append(requests, r.Encode())
}
requestsBundle.Requests = requests
}
Expand Down

0 comments on commit 3206407

Please sign in to comment.