From a9a234e0669789922c63784ad9444340df0203d1 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 15 May 2024 09:34:42 +0200 Subject: [PATCH] typo --- ignite/templates/field/datatype/string.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignite/templates/field/datatype/string.go b/ignite/templates/field/datatype/string.go index a3c23738fd..4c9bcb9ded 100644 --- a/ignite/templates/field/datatype/string.go +++ b/ignite/templates/field/datatype/string.go @@ -13,7 +13,7 @@ var ( // DataString is a string data type definition. DataString = DataType{ DataType: func(string) string { return "string" }, - CollectionsKeyValueName: func(string) string { return "collections.BytesKey" }, + CollectionsKeyValueName: func(string) string { return "collections.StringKey" }, DefaultTestValue: "xyz", ValueLoop: "strconv.Itoa(i)", ValueIndex: "strconv.Itoa(0)",