mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
sharding: Removing pointer receiver(#92)
Former-commit-id: 09bb5072963354b735d5c0c22c9d43761cab8234 [formerly 907a147c13b3d28605fb6380d0b8ad8518f92208] Former-commit-id: b3afc338970d4f8e199f87396a13cc91031d1829
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user