We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821d702 commit c1f59b9Copy full SHA for c1f59b9
eth/catalyst/api.go
@@ -879,8 +879,7 @@ func getBody(block *types.Block) *engine.ExecutionPayloadBodyV1 {
879
)
880
881
for j, tx := range body.Transactions {
882
- data, _ := tx.MarshalBinary()
883
- txs[j] = hexutil.Bytes(data)
+ txs[j], _ = tx.MarshalBinary()
884
}
885
886
// Post-shanghai withdrawals MUST be set to empty slice instead of nil
0 commit comments