pull/2538/head
Ayrat Badykov 5 years ago
parent e844f11b9b
commit d3d00b6013
No known key found for this signature in database
GPG Key ID: B44668E265E9396F
  1. 4
      apps/block_scout_web/assets/js/lib/coin_balance_history_chart.js
  2. 3
      apps/explorer/lib/explorer/chain.ex

@ -20,10 +20,10 @@ export function createCoinBalanceHistoryChart (el) {
var stepSize = 3
if (data.length > 2) {
if (data.length > 1) {
var diff = Math.abs(new Date(data[0].date) - new Date(data[1].date))
var periodInDays = diff / (1000 * 60 * 60 * 24)
console.log(periodInDays)
stepSize = periodInDays
}
return new Chart(el, {

@ -2965,7 +2965,6 @@ defmodule Explorer.Chain do
|> CoinBalance.fetch_coin_balances(paging_options)
|> page_coin_balances(paging_options)
|> Repo.all()
|> Enum.dedup()
end
def get_coin_balance(address_hash, block_number) do
@ -2998,7 +2997,7 @@ defmodule Explorer.Chain do
today = Date.to_string(NaiveDateTime.utc_now())
if Enum.count(result) > 0 && !Enum.any?(result, fn map -> map[:date] == today end) do
[%{date: today, value: List.last(result)[:value]} | result]
result ++ [%{date: today, value: List.last(result)[:value]}]
else
result
end

Loading…
Cancel
Save