Skip to content

Commit

Permalink
Use SSZ instead of RLP
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Jun 12, 2022
1 parent d614a91 commit 372dbc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/beacon/types.go
Original file line number Diff line number Diff line change
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.MarshalMinimal()
enc[i], _ = tx.MarshalBinary()
}
return enc
}
Expand Down

0 comments on commit 372dbc7

Please sign in to comment.