forked from cerc-io/laconicd-deprecated
wrap typed data for record attributes (#70)
* unpack interface * unpackInterfaces * gofmpt * patch setRecord in WrapTxToTypedData * patch message types * hardcode record attributes * patch typed data * versioning record attributes and http post rules for rpc messages * record names
This commit is contained in:
@@ -155,10 +155,12 @@ func (k Keeper) RecordsFromAttributes(ctx sdk.Context, attributes []*types.Query
|
||||
if record.Deleted {
|
||||
continue
|
||||
}
|
||||
if !all && len(record.Names) == 0 {
|
||||
store := ctx.KVStore(k.storeKey)
|
||||
recordWithNames := recordObjToRecord(store, record)
|
||||
if !all && len(recordWithNames.Names) == 0 {
|
||||
continue
|
||||
}
|
||||
records = append(records, record)
|
||||
records = append(records, recordWithNames)
|
||||
}
|
||||
return records, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user