chore: delete unnecessary convertation to string

This commit is contained in:
Mihail Pestrikov 2025-01-20 16:44:02 +00:00
parent 6f8dc65c04
commit 4f731fd35a

View file

@ -82,7 +82,7 @@ func Properties(token []byte) map[string]string {
"name": nft.Question,
"prevOwners": std.Itoa10(nft.PrevOwners),
"questionType": nft.QuestionType,
"data": string(nft.Data),
"data": nft.Data,
}
return result
}