pull/2616/head
Ayrat Badykov 5 years ago
parent e8ba3b2278
commit 045652a505
No known key found for this signature in database
GPG Key ID: B44668E265E9396F
  1. 6
      apps/explorer/lib/explorer/chain.ex

@ -2968,7 +2968,11 @@ defmodule Explorer.Chain do
|> page_coin_balances(paging_options)
|> Repo.all()
|> Enum.dedup_by(fn record ->
record.delta == Decimal.new(0)
if record.delta == Decimal.new(0) do
:dup
else
System.unique_integer
end
end)
end

Loading…
Cancel
Save