From d7f9cc80799fec02c8564131ed0109af2694dbad 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) Former-commit-id: 09bb5072963354b735d5c0c22c9d43761cab8234 [formerly 907a147c13b3d28605fb6380d0b8ad8518f92208] Former-commit-id: b3afc338970d4f8e199f87396a13cc91031d1829 --- sharding/collation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharding/collation.go b/sharding/collation.go index 39a009b6ba..cb62b8fb60 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))