diff options
author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-10-23 11:54:10 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-10-23 11:54:10 +0200 |
commit | 04393e4e38586854ac2846b97ef61941e6d4a39a (patch) | |
tree | c948830e2aabf92ff6c4a1d70f1321d185d27f1a /reqres.go | |
parent | 84a3a980208aec656ed8a1fad3238b41e8bc742d (diff) |
fixed json tag typo
Diffstat (limited to 'reqres.go')
-rw-r--r-- | reqres.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ type GetProofByHashRequest struct { type GetEntryResponse struct { Leaf string `json:"leaf"` // base64-encoded StItem Signature string `json:"signature"` // base64-encoded DigitallySigned - Chain []string `json:chain` // base64-encoded X.509 certificates + Chain []string `json:"chain"` // base64-encoded X.509 certificates } // GetEntriesResponse is an assembled get-entries responses |