diff --git a/cli/wallet/nep17.go b/cli/wallet/nep17.go index dd9006bd8..e988a0a30 100644 --- a/cli/wallet/nep17.go +++ b/cli/wallet/nep17.go @@ -197,7 +197,7 @@ func getNEP17Balance(ctx *cli.Context) error { } tokenSymbol = "UNKNOWN" } - fmt.Fprintf(ctx.App.Writer, "%s: %s (%s)\n", strings.ToUpper(tokenSymbol), tokenName, asset.StringLE()) + fmt.Fprintf(ctx.App.Writer, "%s: %s (%s)\n", tokenSymbol, tokenName, asset.StringLE()) fmt.Fprintf(ctx.App.Writer, "\tAmount : %s\n", balances.Balances[i].Amount) fmt.Fprintf(ctx.App.Writer, "\tUpdated: %d\n", balances.Balances[i].LastUpdated) }