Skip to content

Commit aefb680

Browse files
author
Jayash Satolia
committed
Fix
1 parent 4f4ea0b commit aefb680

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

wasmsdk/allocation.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,5 +548,10 @@ func repairSize(allocationID, remotePath string) (sdk.RepairSize, error) {
548548
}
549549

550550
func generateOwnerSigningKey(ownerPublicKey, ownerID string) (string, error) {
551-
return sdk.GenerateOwnerSigningKey(client.PublicKey(), client.Id())
551+
res, err := sdk.GenerateOwnerSigningKey(client.PublicKey(), client.Id())
552+
if err != nil {
553+
return "", err
554+
}
555+
556+
return string(res), nil
552557
}

0 commit comments

Comments
 (0)