Merge pull request #1975 from poanetwork/ab-add-index-to-logs

add log index to transaction view
pull/1989/head
Victor Baranov 6 years ago committed by GitHub
commit d76ec903bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 5
      apps/block_scout_web/lib/block_scout_web/etherscan.ex
  3. 3
      apps/block_scout_web/lib/block_scout_web/views/api/rpc/transaction_view.ex
  4. 3
      apps/block_scout_web/test/block_scout_web/controllers/api/rpc/transaction_controller_test.exs

@ -57,6 +57,7 @@
- [#1900](https://github.com/poanetwork/blockscout/pull/1900) - SUPPORTED_CHAINS ENV var - [#1900](https://github.com/poanetwork/blockscout/pull/1900) - SUPPORTED_CHAINS ENV var
- [#1892](https://github.com/poanetwork/blockscout/pull/1892) - Remove temporary worker modules - [#1892](https://github.com/poanetwork/blockscout/pull/1892) - Remove temporary worker modules
- [#1958](https://github.com/poanetwork/blockscout/pull/1958) - Default value for release link env var - [#1958](https://github.com/poanetwork/blockscout/pull/1958) - Default value for release link env var
- [#1975](https://github.com/poanetwork/blockscout/pull/1975) - add log index to transaction view
## 1.3.10-beta ## 1.3.10-beta

@ -594,6 +594,11 @@ defmodule BlockScoutWeb.Etherscan do
type: "block number", type: "block number",
definition: "A nonnegative number used to identify blocks.", definition: "A nonnegative number used to identify blocks.",
example: ~s("0x5c958") example: ~s("0x5c958")
},
index: %{
type: "log index",
definition: "A nonnegative number used to identify logs.",
example: ~s("1")
} }
} }
} }

@ -77,7 +77,8 @@ defmodule BlockScoutWeb.API.RPC.TransactionView do
%{ %{
"address" => "#{log.address_hash}", "address" => "#{log.address_hash}",
"topics" => get_topics(log), "topics" => get_topics(log),
"data" => "#{log.data}" "data" => "#{log.data}",
"index" => "#{log.index}"
} }
end end

@ -460,7 +460,8 @@ defmodule BlockScoutWeb.API.RPC.TransactionControllerTest do
%{ %{
"address" => "#{address.hash}", "address" => "#{address.hash}",
"data" => "#{log.data}", "data" => "#{log.data}",
"topics" => ["first topic", "second topic", nil, nil] "topics" => ["first topic", "second topic", nil, nil],
"index" => "#{log.index}"
} }
], ],
"next_page_params" => nil "next_page_params" => nil

Loading…
Cancel
Save