Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fix tx fetching on the view (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
igamigo authored Sep 19, 2023
1 parent d5e25c4 commit ef36145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/starknet_explorer_web/live/pages/block_detail.ex
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ defmodule StarknetExplorerWeb.BlockDetailLive do
<div>Type</div>
<div>Version</div>
</div>
<%= for _transaction = %StarknetExplorer.Transaction{hash: hash, type: type, version: version} <- @block.transactions do %>
<%= for _transaction = %{hash: hash, type: type, version: version} <- @block.transactions do %>
<div class="grid-3 custom-list-item">
<div>
<div class="list-h">Hash</div>
Expand Down

0 comments on commit ef36145

Please sign in to comment.