Apply go fmt changes and cleanup

This commit is contained in:
Elizabeth Engelman
2019-07-19 10:44:36 -05:00
parent d30b4ea4f2
commit 69ad521482
6 changed files with 32 additions and 29 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ type StorageValueMetadata struct {
Name string
Keys map[Key]string
Type ValueType
PackedNames map[int]string //name of each item packed and their order
PackedTypes map[int]ValueType //type of each item packed and their order
PackedNames map[int]string //position in map (zero indexed) => name of packed item
PackedTypes map[int]ValueType //position in map (zero indexed)=> type of packed item
}
func GetStorageValueMetadata(name string, keys map[Key]string, valueType ValueType) StorageValueMetadata {