diff --git a/apps/block_scout_web/lib/block_scout_web/controllers/transaction_controller.ex b/apps/block_scout_web/lib/block_scout_web/controllers/transaction_controller.ex index e476b8f808..fbdcdea49f 100644 --- a/apps/block_scout_web/lib/block_scout_web/controllers/transaction_controller.ex +++ b/apps/block_scout_web/lib/block_scout_web/controllers/transaction_controller.ex @@ -164,6 +164,7 @@ defmodule BlockScoutWeb.TransactionController do exchange_rate: Market.get_exchange_rate(Explorer.coin()) || Token.null(), block_height: Chain.block_height(), current_path: Controller.current_full_path(conn), + current_user: current_user(conn), show_token_transfers: true, transaction: transaction, from_tags: get_address_tags(transaction.from_address_hash, current_user(conn)), @@ -200,6 +201,7 @@ defmodule BlockScoutWeb.TransactionController do "show_internal_transactions.html", exchange_rate: Market.get_exchange_rate(Explorer.coin()) || Token.null(), current_path: Controller.current_full_path(conn), + current_user: current_user(conn), block_height: Chain.block_height(), show_token_transfers: Chain.transaction_has_token_transfers?(transaction_hash), transaction: transaction, diff --git a/apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex index 96eb5f5ad2..76ad01c728 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex @@ -206,7 +206,6 @@ clipboard_text: from_address_hash, aria_label: gettext("Copy From Address"), title: gettext("Copy From Address") %> - <%= render BlockScoutWeb.AddressView, "_labels.html", tags: @from_tags %>