Skip to content

Commit

Permalink
Merge pull request #3303 from poanetwork/vb-contract-twins-performance
Browse files Browse the repository at this point in the history
Address contract twins feature performance
  • Loading branch information
vbaranov authored Sep 19, 2020
2 parents 8e6c9cd + d59aac0 commit 30525e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- [#3261](https://github.com/poanetwork/blockscout/pull/3261) - Bridged tokens table

### Fixes
- [#3303](https://github.com/poanetwork/blockscout/pull/3303) - Address contract twins feature performance
- [#3295](https://github.com/poanetwork/blockscout/pull/3295) - Token instance: check if external_url is not null before trimming
- [#3291](https://github.com/poanetwork/blockscout/pull/3291) - Support unlimited number of external rewards in block
- [#3290](https://github.com/poanetwork/blockscout/pull/3290) - Eliminate protocol Jason.Encoder not implemented for... error
Expand Down
2 changes: 1 addition & 1 deletion apps/explorer/lib/explorer/chain.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3244,7 +3244,7 @@ defmodule Explorer.Chain do
query =
from(
address in Address,
left_join: smart_contract in SmartContract,
inner_join: smart_contract in SmartContract,
on: address.hash == smart_contract.address_hash,
where: fragment("md5(contract_code::text)") == ^contract_code_md5,
where: address.hash != ^target_address_hash,
Expand Down

0 comments on commit 30525e5

Please sign in to comment.