Skip to content
Snippets Groups Projects
Commit 77b2742c authored by Malte Bauch's avatar Malte Bauch
Browse files

Fix: faulty append

parent 3397510f
No related branches found
No related tags found
1 merge request!11Big boom integration
Pipeline #181119 passed
...@@ -276,10 +276,10 @@ func (kms *EKMS) GenerateAndSendKSAKey(address string, requestId string, number ...@@ -276,10 +276,10 @@ func (kms *EKMS) GenerateAndSendKSAKey(address string, requestId string, number
encryptedKSAKeyAsString := base64.StdEncoding.EncodeToString(encryptedKSAKey) encryptedKSAKeyAsString := base64.StdEncoding.EncodeToString(encryptedKSAKey)
keys = append(keys, &pbIC.Key{ keys[i] = &pbIC.Key{
Id: ksaKeyId.String(), Id: ksaKeyId.String(),
Key: encryptedKSAKeyAsString, Key: encryptedKSAKeyAsString,
}) }
} }
// TODO: move this somewhere else! // TODO: move this somewhere else!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment