Load record names in getRecordsByIds GQL query (#67)

* Fix variable rename

* Load names in getRecordsByIds GQL query
This commit is contained in:
nikugogoi 2022-12-12 15:48:03 +05:30 committed by GitHub
parent c5cfc35f48
commit edeeb49614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ func PlaygroundHandler(apiURL string) http.HandlerFunc {
} }
w.Header().Set("Content-Type", "text/html") w.Header().Set("Content-Type", "text/html")
err := page.Execute(w, map[string]interface{}{ err := page.Execute(w, map[string]interface{}{
"apiUrl": apiURL, "apiURL": apiURL,
}) })
if err != nil { if err != nil {
panic(err) panic(err)

View File

@ -107,7 +107,7 @@ func (k Keeper) GetRecord(ctx sdk.Context, id string) (record types.Record) {
store := ctx.KVStore(k.storeKey) store := ctx.KVStore(k.storeKey)
result := store.Get(GetRecordIndexKey(id)) result := store.Get(GetRecordIndexKey(id))
k.cdc.MustUnmarshal(result, &record) k.cdc.MustUnmarshal(result, &record)
return record return recordObjToRecord(store, record)
} }
// ListRecords - get all records. // ListRecords - get all records.