Skip to content

Commit 87a4c33

Browse files
authored
Merge pull request ethereum#2 from Inphi/inphi/quickfix
fix semantic merge conflict
2 parents f15311b + 177f16e commit 87a4c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/beacon/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ type ForkchoiceStateV1 struct {
124124
func encodeTransactions(txs []*types.Transaction) [][]byte {
125125
var enc = make([][]byte, len(txs))
126126
for i, tx := range txs {
127-
enc[i], _ = tx.MarshalBinary()
127+
enc[i], _ = tx.MarshalMinimal()
128128
}
129129
return enc
130130
}

0 commit comments

Comments
 (0)