pull/2538/head
Ayrat Badykov 5 years ago
parent a8022e1cd4
commit 839f5d0b8b
No known key found for this signature in database
GPG Key ID: B44668E265E9396F
  1. 1
      apps/explorer/lib/explorer/chain/address/coin_balance.ex

@ -75,6 +75,7 @@ defmodule Explorer.Chain.Address.CoinBalance do
from( from(
cb in CoinBalance, cb in CoinBalance,
where: cb.address_hash == ^address_hash, where: cb.address_hash == ^address_hash,
where: not is_nil(cb.value),
inner_join: b in Block, inner_join: b in Block,
on: cb.block_number == b.number, on: cb.block_number == b.number,
order_by: [desc: :block_number], order_by: [desc: :block_number],

Loading…
Cancel
Save