Skip to content

Commit

Permalink
sharding: Removing pointer receiver(ethereum#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
nisdas committed May 16, 2018
1 parent 434c511 commit b906483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sharding/collation.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (c *Collation) CalculateChunkRoot() {
}

// CreateRawBlobs creates raw blobs from transactions.
func (c *Collation) CreateRawBlobs() ([]*utils.RawBlob, error) {
func (c Collation) CreateRawBlobs() ([]*utils.RawBlob, error) {

// It does not skip evm execution by default
blobs := make([]*utils.RawBlob, len(c.transactions))
Expand Down

0 comments on commit b906483

Please sign in to comment.