Skip to content

Commit

Permalink
fix some rename frob blind in the voter
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Apr 24, 2019
1 parent f2d1bab commit 8a4c3df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions voter/voter.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Voter struct {

// these will eventually be per registrar
sig *blind.BlindSignature
pollee *blind.BlindPollee
pollee *blind.BlindRequest
//registrar registrar's publickey
//registration session info from blinding
}
Expand All @@ -28,7 +28,7 @@ type VoterSignature struct {
}

func NewVoter() *Voter {
keys, _ := blind.GenerateKey(nil)
keys, _ := blind.GenerateKey()
return &Voter{privateKey: keys,
PublicKey: &keys.PublicKey}
}
Expand Down

0 comments on commit 8a4c3df

Please sign in to comment.