Skip to content

Commit

Permalink
[WIP] Further work!
Browse files Browse the repository at this point in the history
Signed-off-by: Yogesh Deshpande <[email protected]>
  • Loading branch information
yogeshbdeshpande committed Dec 9, 2023
1 parent 11d45dc commit 1c05045
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handler/evidence_rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,10 @@ func (s *RPCClient) GetTrustAnchorIDs(token *proto.AttestationToken) ([]string,
return []string{""}, fmt.Errorf("marshaling token: %w", err)
}

err = s.client.Call("Plugin.GetTrustAnchorID", data, &resp)
err = s.client.Call("Plugin.GetTrustAnchorIDs", data, &resp)
if err != nil {
err = ParseError(err)
return []string{""}, fmt.Errorf("Plugin.GetTrustAnchorID RPC call failed: %w", err) // nolint
return []string{""}, fmt.Errorf("Plugin.GetTrustAnchorIDs RPC call failed: %w", err) // nolint
}

return resp, nil
Expand Down

0 comments on commit 1c05045

Please sign in to comment.