Merge branch 'master' into ab-fix-bootstrap-vulnerability

pull/1517/head
Victor Baranov 6 years ago committed by GitHub
commit 4b1b364863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      apps/indexer/lib/indexer/temporary/failed_created_addresses.ex

@ -49,7 +49,8 @@ defmodule Indexer.Temporary.FailedCreatedAddresses do
from(t in Transaction, from(t in Transaction,
left_join: it in InternalTransaction, left_join: it in InternalTransaction,
on: it.transaction_hash == t.hash, on: it.transaction_hash == t.hash,
where: t.status == ^0 and not is_nil(it.created_contract_address_hash) where: t.status == ^0 and not is_nil(it.created_contract_address_hash),
distinct: t.hash
) )
found_transactions = Repo.all(query, timeout: @query_timeout) found_transactions = Repo.all(query, timeout: @query_timeout)

Loading…
Cancel
Save