Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
amoylan2 committed Jul 2, 2024
1 parent bf9ba38 commit 20865f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coordinator/internal/controller/api/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ func (a *AuthController) IdentityHandler(c *gin.Context) interface{} {
c.Set(types.ProverVersion, proverVersion)
}

if hardForkName, ok := claims[types.VKs]; ok {
c.Set(types.VKs, hardForkName)
if vks, ok := claims[types.VKs]; ok {
c.Set(types.VKs, vks)
}
return nil
}

0 comments on commit 20865f7

Please sign in to comment.