Skip to content

Commit

Permalink
removed todos
Browse files Browse the repository at this point in the history
  • Loading branch information
terencechain committed Mar 21, 2018
1 parent 2b46ed4 commit 3e416de
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sharding/collation.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import (
)

type Collation struct {
header *CollationHeader
//TODO: Tx to blob
header *CollationHeader
transactions []*types.Transaction
}

Expand All @@ -35,7 +34,6 @@ func (c *Collation) ProposerSignature() []byte { return c.header.propos

func (c *Collation) SetHeader(h *CollationHeader) { c.header = h }

//TODO: Tx to blob
func (c *Collation) AddTransaction(tx *types.Transaction) {
c.transactions = append(c.transactions, tx)
}
Expand Down

0 comments on commit 3e416de

Please sign in to comment.