Archived
1
0

fix order

This commit is contained in:
Jeff Becker 2017-08-25 10:14:16 -04:00
parent 88d723219a
commit 838f2b8ca7
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -395,7 +395,7 @@ func hexify(data []byte) string {
// extract pubkey from secret key
// return as hex
func getSignPubkey(sk []byte) string {
_, pk := seedToKeyPair(sk)
pk, _ := seedToKeyPair(sk)
return hexify(pk)
}