Skip to content

Commit

Permalink
Merge dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kchojn authored Oct 14, 2021
1 parent d2c523f commit 28ccffb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file.
- Changed [EthTx](https://github.com/EthTx/ethtx) version - >=0.3.0,<0.4.0 [#62](https://github.com/EthTx/ethtx_ce/pull/62)
- Deleted usage of mongodb variable [#61](https://github.com/EthTx/ethtx_ce/pull/61)

### Fixed
- Fixed colored guessed events with tuple arg [#65](https://github.com/EthTx/ethtx_ce/pull/65)


## 0.2.6 - 2021-10-01
### Changed
Expand Down
2 changes: 1 addition & 1 deletion ethtx_ce/frontend/templates/transaction.html
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h3>Emitted events:</h3>
<td>
<span style="color: slategray">[{{- event.index -}}]</span>
{{ address_link(event.contract.address, event.contract.name, event.contract.badge) }}
{%- if not event.event_name.startswith("0x") and event.parameters and not event.parameters[0]["name"] -%}
{%- if not event.event_name.startswith("0x") and event.parameters and not event.parameters[0]["name"] and event.parameters[0]["type"] != "tuple" -%}
<span style='color: dodgerblue'>.{{ event.event_name }}</span>
{%- else -%}
<span style='color: darkgreen'>.{{ event.event_name }}</span>
Expand Down

0 comments on commit 28ccffb

Please sign in to comment.