From b90648305a4ba7c460a8dbe0fec6ccd02c022a6f Mon Sep 17 00:00:00 2001 From: nisdas Date: Wed, 16 May 2018 20:35:08 +0800 Subject: [PATCH] sharding: Removing pointer receiver(#92) --- sharding/collation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharding/collation.go b/sharding/collation.go index 39a009b6ba29..cb62b8fb605e 100644 --- a/sharding/collation.go +++ b/sharding/collation.go @@ -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))