Skip to content

Commit

Permalink
Prevent terminating of tokens/contracts process
Browse files Browse the repository at this point in the history
  • Loading branch information
vbaranov committed Oct 20, 2020
1 parent 5908504 commit 60f0aa6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@


### Fixes
- [#3375](https://github.com/poanetwork/blockscout/pull/3375) - Prevent terminating of tokens/contracts process
- [#3373](https://github.com/poanetwork/blockscout/pull/3373) - Fix horizontal scroll in Tokens table
- [#3370](https://github.com/poanetwork/blockscout/pull/3370) - Improve contracts verification: refine constructor arguments extractor
- [#3368](https://github.com/poanetwork/blockscout/pull/3368) - Fix Verify contract loading button width
Expand Down
2 changes: 2 additions & 0 deletions apps/explorer/lib/explorer/chain.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,7 @@ defmodule Explorer.Chain do
def search_token(word) do
term =
word
|> String.replace(~r/[^a-zA-Z0-9]/, " ")
|> String.replace(~r/ +/, " & ")

term_final = term <> ":*"
Expand Down Expand Up @@ -1086,6 +1087,7 @@ defmodule Explorer.Chain do
def search_contract(word) do
term =
word
|> String.replace(~r/[^a-zA-Z0-9]/, " ")
|> String.replace(~r/ +/, " & ")

term_final = term <> ":*"
Expand Down

0 comments on commit 60f0aa6

Please sign in to comment.