Merge pull request #351 from status-im/fix/token-balances-comparison

Convert to double instead of float when generating GitHub comment text
This commit is contained in:
Vitaliy Vlasov 2018-03-13 15:21:54 +02:00 committed by GitHub
commit a00d06d00b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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")))