Change Key.Value to Key.Checksum
This commit is contained in:
parent
b84fe87f48
commit
6237f7755a
2 changed files with 14 additions and 13 deletions
|
|
@ -130,7 +130,7 @@ func MyJSONTeam(t *Team, started bool) (interface{}, error) {
|
|||
} else {
|
||||
for _, k := range keys {
|
||||
if t == nil {
|
||||
exercice.Keys = append(exercice.Keys, fmt.Sprintf("%x", k.Value)+k.Type)
|
||||
exercice.Keys = append(exercice.Keys, fmt.Sprintf("%x", k.Checksum)+k.Type)
|
||||
} else {
|
||||
exercice.Keys = append(exercice.Keys, k.Type)
|
||||
if PartialValidation {
|
||||
|
|
|
|||
Reference in a new issue