diff --git a/CHANGELOG.md b/CHANGELOG.md index c28a43251d..1d801ee54a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Fixes +- [#3346](https://github.com/poanetwork/blockscout/pull/3346) - Fix inventory tab pagination - [#3344](https://github.com/poanetwork/blockscout/pull/3344) - Fix logs search on address page - [#3342](https://github.com/poanetwork/blockscout/pull/3342) - Fix mobile styles for contract code tab - [#3341](https://github.com/poanetwork/blockscout/pull/3341) - Change Solc binary downloader path to official primary supported path diff --git a/apps/block_scout_web/lib/block_scout_web/controllers/tokens/inventory_controller.ex b/apps/block_scout_web/lib/block_scout_web/controllers/tokens/inventory_controller.ex index 41f562554b..a11f60a1b4 100644 --- a/apps/block_scout_web/lib/block_scout_web/controllers/tokens/inventory_controller.ex +++ b/apps/block_scout_web/lib/block_scout_web/controllers/tokens/inventory_controller.ex @@ -30,7 +30,7 @@ defmodule BlockScoutWeb.Tokens.InventoryController do token_inventory_path( conn, :index, - Address.checksum(address_hash_string), + address_hash_string, Map.delete(next_page_params, "type") ) end