Merge pull request #4976 from blockscout/vb-refine-pending-transactions-fetcher

Handle :econnrefused in pending transactions fetcher
pull/4938/head
Victor Baranov 3 years ago committed by GitHub
commit cb5f8dbc43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 5
      apps/indexer/lib/indexer/fetcher/pending_transaction.ex

@ -5,6 +5,7 @@
### Fixes
- [#4977](https://github.com/blockscout/blockscout/pull/4977) - Export token transfers on address: include transfers on contract itself
- [#4976](https://github.com/blockscout/blockscout/pull/4976) - Handle :econnrefused in pending transactions fetcher
- [#4965](https://github.com/blockscout/blockscout/pull/4965) - Fix search field appearance on medium size screens
- [#4945](https://github.com/blockscout/blockscout/pull/4945) - Fix `Verify & Publish` button link
- [#4888](https://github.com/blockscout/blockscout/pull/4888) - Fix fetch_top_tokens method: add nulls last for token holders desc order

@ -141,6 +141,11 @@ defmodule Indexer.Fetcher.PendingTransaction do
:ok
{:error, :econnrefused} ->
Logger.error("connection_refused")
:ok
{:error, {:bad_gateway, _}} ->
Logger.error("bad_gateway")

Loading…
Cancel
Save