Skip to content

Commit

Permalink
Merge pull request #57 from synadia-io/fix-scope-key-creation
Browse files Browse the repository at this point in the history
Update key generation to use signing service API
  • Loading branch information
aricart authored Dec 19, 2024
2 parents e40838f + cd9c3e7 commit 4bb9a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_signingkeys.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func (as *accountSigningKeys) List() []string {
}

func (as *accountSigningKeys) Add() (string, error) {
k, err := KeyFor(nkeys.PrefixByteAccount)
k, err := as.data.Operator.SigningService.NewKey(nkeys.PrefixByteAccount)
if err != nil {
return "", err
}
Expand Down

0 comments on commit 4bb9a89

Please sign in to comment.