fix: Filter out tokens with skip_metadata: true from token fetcher (#10736)

pull/10805/head
Qwerty5Uiop 2 months ago committed by GitHub
parent 930ef016eb
commit 0a3f29eb52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      apps/explorer/lib/explorer/chain.ex

@ -3672,6 +3672,7 @@ defmodule Explorer.Chain do
from(
token in Token,
where: token.cataloged == false or is_nil(token.cataloged),
where: is_nil(token.skip_metadata) or token.skip_metadata == false,
select: token.contract_address_hash
)

Loading…
Cancel
Save