Merge pull request #348 from status-im/fix/token-formatting

Improve conversion of token values to float
This commit is contained in:
Vitaliy Vlasov 2018-03-12 18:56:49 +02:00 committed by GitHub
commit a37be80b73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 16 deletions

View File

@ -146,7 +146,25 @@
(defn prettify-bounty-items [bounty-items]
(let [renames {:user_name :display-name
(let [format-float (fn [bounty balance]
(try
(format "%.2f" (double balance))
(catch Throwable ex
(log/error (str (:repo-owner bounty)
"/"
(:repo-name bounty)
"/"
(:issue-number bounty))
"Failed to convert token value:" balance)
"0.00")))
update-token-values (fn [bounty]
(->> bounty
:tokens
(map (fn [[tla balance]]
[tla (format-float bounty balance)]))
(into {})
(assoc bounty :tokens)))
renames {:user_name :display-name
:user_avatar_url :avatar-url
:issue_title :issue-title
:type :item-type
@ -161,11 +179,7 @@
(rename-keys renames)
(update :value-usd usd-decimal->str)
(update :balance-eth eth-decimal->str)
(update :tokens (fn [tokens]
(into {}
(map (fn [[tla balance]]
[tla (format "%.2f" balance)])
tokens)))))
update-token-values)
bounty-items)))
(defn activity-feed []