Skip to content

Commit

Permalink
(BIDS-2584) added advanced filter to internal transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
remoterami committed Jan 17, 2024
1 parent e553af6 commit 87ba67f
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions templates/eth1tx.html
Original file line number Diff line number Diff line change
Expand Up @@ -409,13 +409,15 @@ <h1 class="h4 mb-1 mb-md-0">
</thead>
<tbody>
{{ range $index, $tx := .InternalTxns }}
<tr>
<td>{{ .TracePath }}</td>
<td>{{ .From }}</td>
<td>{{ .To }}</td>
<td>{{ .Amount }}</td>
<td>{{ .Gas.Limit }}</td>
</tr>
{{ if not .Advanced }}
<tr>
<td>{{ .TracePath }}</td>
<td>{{ .From }}</td>
<td>{{ .To }}</td>
<td>{{ .Amount }}</td>
<td>{{ .Gas.Limit }}</td>
</tr>
{{ end }}
{{ end }}
</tbody>
</table>
Expand Down

0 comments on commit 87ba67f

Please sign in to comment.