Skip to content

Commit

Permalink
linted
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Gololicic committed Apr 20, 2021
1 parent 0c0776e commit d4fb2b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/accounts/accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ type AccountResult struct {
func (r *AccountResult) JSON() interface{} {
result := make(map[string]interface{})
result["address"] = r.Address
result["balance"] = fmt.Sprintf("%s", cadence.UFix64(r.Balance))
result["balance"] = cadence.UFix64(r.Balance).String()

keys := make([]string, 0)
for _, key := range r.Keys {
Expand Down

0 comments on commit d4fb2b0

Please sign in to comment.