Skip to content

Commit

Permalink
Fix nep11 tracker (#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon authored Jul 12, 2022
1 parent 20880c3 commit 32bd86d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TokensTracker/Trackers/NEP-11/Nep11Tracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,12 @@ public JObject GetNep11Balances(JArray _params)
balances.Add(new JObject
{
["assethash"] = key.ToString(),
["name"] = name,
["symbol"] = symbol,
["decimals"] = decimals.ToString(),
["tokens"] = new JArray(map[key].Select(v => new JObject
{
["tokenid"] = v.tokenid,
["name"] = name,
["symbol"] = symbol,
["decimals"] = decimals.ToString(),
["amount"] = v.amount.ToString(),
["lastupdatedblock"] = v.height
})),
Expand Down

0 comments on commit 32bd86d

Please sign in to comment.