Merge pull request #3031 from poanetwork/vb-ignore-case-for-first-trace-response

Ignore case for first trace response
pull/3032/head
Victor Baranov 5 years ago committed by GitHub
commit 0cefa818d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 3
      apps/block_scout_web/lib/block_scout_web/controllers/transaction_raw_trace_controller.ex
  3. 3
      apps/explorer/lib/explorer/chain.ex

@ -1,7 +1,7 @@
## Current
### Features
- [#3013](https://github.com/poanetwork/blockscout/pull/3013), [#3026](https://github.com/poanetwork/blockscout/pull/3026) - Raw trace of transaction on-demand
- [#3013](https://github.com/poanetwork/blockscout/pull/3013), [#3026](https://github.com/poanetwork/blockscout/pull/3026), [#3031](https://github.com/poanetwork/blockscout/pull/3031) - Raw trace of transaction on-demand
- [#3000](https://github.com/poanetwork/blockscout/pull/3000) - Get rid of storing of internal transactions for simple coin transfers
- [#2875](https://github.com/poanetwork/blockscout/pull/2875) - Save contract code from Parity genesis file
- [#2834](https://github.com/poanetwork/blockscout/pull/2834) - always redirect to checksummed hash

@ -60,6 +60,9 @@ defmodule BlockScoutWeb.TransactionRawTraceController do
{:error, _} ->
internal_transactions
:ignore ->
internal_transactions
end
end

@ -4076,6 +4076,9 @@ defmodule Explorer.Chain do
{:error, error} ->
{:error, error}
:ignore ->
:ignore
end
end

Loading…
Cancel
Save