Skip to content

Commit 5f0f542

Browse files
author
nisdas
committed
sharding: Adding colon(ethereum#92)
1 parent d967118 commit 5f0f542

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sharding/collation.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (c Collation) CreateRawBlobs() ([]*utils.RawBlob, error) {
127127
blobs[i], err = utils.NewRawBlob(c.transactions[i], false)
128128

129129
if err != nil {
130-
return nil, fmt.Errorf("Creation of raw blobs from transactions failed %v", err)
130+
return nil, fmt.Errorf("Creation of raw blobs from transactions failed: %v", err)
131131
}
132132

133133
}
@@ -147,7 +147,7 @@ func ConvertBackToTx(rawBlobs []utils.RawBlob) ([]*types.Transaction, error) {
147147

148148
err := utils.ConvertFromRawBlob(&rawBlobs[i], blobs[i])
149149
if err != nil {
150-
return nil, fmt.Errorf("Creation of transactions from raw blobs failed %v", err)
150+
return nil, fmt.Errorf("Creation of transactions from raw blobs failed: %v", err)
151151
}
152152
}
153153
return blobs, nil

0 commit comments

Comments
 (0)