From 4f731fd35affe65cbee1d9f94d8528ea9f3dfe5e Mon Sep 17 00:00:00 2001 From: MihailPestrikov Date: Mon, 20 Jan 2025 16:44:02 +0000 Subject: [PATCH] chore: delete unnecessary convertation to string --- contracts/nft.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/nft.go b/contracts/nft.go index dfa7e08..b7801eb 100644 --- a/contracts/nft.go +++ b/contracts/nft.go @@ -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 }