Skip to content

Commit

Permalink
[BLOCK-2474] fix nft tokenize (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan-Ultra authored Aug 19, 2024
1 parent 799487d commit 33e6b93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion search/tokenization.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ func (t *tokenizer) tokenizeData(data string, account string) map[string]interfa

/* ultra-duncan --- BLOCK-2253 tokenize nft data field*/
if account == "eosio.nft.ft" {
if converted, err := tokenizeNFTDataField(normalizedField, normalizedValue); err == nil {
converted, err := tokenizeNFTDataField(normalizedField, normalizedValue)
if converted != nil && err == nil {
normalizedValue = converted
}
}
Expand Down

0 comments on commit 33e6b93

Please sign in to comment.