adding in fields to ignore

pull/5302/head
Joshua Fernandes 3 years ago committed by Viktor Baranov
parent ba8e41c018
commit ec7333b520
  1. 1
      CHANGELOG.md
  2. 5
      apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/receipt.ex

@ -31,6 +31,7 @@
- [#5105](https://github.com/blockscout/blockscout/pull/5105) - Redesign token page
- [#5016](https://github.com/blockscout/blockscout/pull/5016) - Add view for internal transactions error
- [#4690](https://github.com/blockscout/blockscout/pull/4690) - Improve pagination: introduce pagination with random access to pages; Integrate it to the Transactions List page
- [#4995](https://github.com/blockscout/blockscout/pull/4995) - Add specific tx receipt fields for the GoQuorum client
### Fixes
- [#5248](https://github.com/blockscout/blockscout/pull/5248) - Speedup query for getting verified smart-contract bytecode twin

@ -304,6 +304,11 @@ defmodule EthereumJSONRPC.Receipt do
:ignore
end
# GoQuorum specific transaction receipt fields
defp entry_to_elixir({key, _}) when key in ~w(isPrivacyMarkerTransaction) do
:ignore
end
defp entry_to_elixir({key, value}) do
{:error, {:unknown_key, %{key: key, value: value}}}
end

Loading…
Cancel
Save