Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
Merge pull request #351 from status-im/fix/token-balances-comparison
Browse files Browse the repository at this point in the history
Convert to double instead of float when generating GitHub comment text
  • Loading branch information
Vitaliy Vlasov authored Mar 13, 2018
2 parents eeffb2b + f8063e0 commit a00d06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj/commiteth/github/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
(str "Tokens: "
(str/join " " (map (fn [[tla balance]] (format "%s: %.2f"
(subs (str tla) 1)
(float balance)))
(double balance)))
token-balances))
"\n")))

Expand Down

0 comments on commit a00d06d

Please sign in to comment.