From 7f94c435cfd42d59bf71047284a2288a733abfdf Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Fri, 12 Apr 2019 13:44:45 +0300 Subject: [PATCH 1/2] fix failing test --- apps/explorer/test/support/factory.ex | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/explorer/test/support/factory.ex b/apps/explorer/test/support/factory.ex index 6a800b3006..a1155059ab 100644 --- a/apps/explorer/test/support/factory.ex +++ b/apps/explorer/test/support/factory.ex @@ -125,7 +125,11 @@ defmodule Explorer.Factory do |> sequence(& &1) |> Hash.Address.cast() - address_hash + if to_string(address_hash) == "0x0000000000000000000000000000000000000000" do + address_hash() + else + address_hash + end end def block_factory do From 8eeca49a990a0d2f5ccd6399d440871c6292545a Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Tue, 16 Apr 2019 10:40:25 +0300 Subject: [PATCH 2/2] add CHANGELOG entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f7d89a28..e4af1a1336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ - [#1749](https://github.com/poanetwork/blockscout/pull/1749) - Replace the link in the footer with the official POA announcements tg channel link - [#1718](https://github.com/poanetwork/blockscout/pull/1718) - Flatten indexer module hierarchy and supervisor tree - [#1753](https://github.com/poanetwork/blockscout/pull/1753) - Add a check mark to decompiled contract tab + - [#1744](https://github.com/poanetwork/blockscout/pull/1744) - remove `0x0..0` from tests ## 1.3.9-beta