Skip to content

Commit

Permalink
Merge pull request ethereum#2 from Inphi/inphi/quickfix
Browse files Browse the repository at this point in the history
fix semantic merge conflict
  • Loading branch information
mdehoog committed Jun 13, 2022
2 parents f15311b + 177f16e commit 87a4c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/beacon/types.go
Expand Up @@ -124,7 +124,7 @@ type ForkchoiceStateV1 struct {
func encodeTransactions(txs []*types.Transaction) [][]byte {
var enc = make([][]byte, len(txs))
for i, tx := range txs {
enc[i], _ = tx.MarshalBinary()
enc[i], _ = tx.MarshalMinimal()
}
return enc
}
Expand Down

0 comments on commit 87a4c33

Please sign in to comment.