Skip to content

Commit

Permalink
Build 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliorizzo committed Apr 8, 2020
1 parent 9292465 commit ad29dd2
Show file tree
Hide file tree
Showing 5 changed files with 181 additions and 254 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.0.7] - 2019-04-08

### Fixed

- Include event decoded fields in tx.receipt.logs

## [1.0.6] - 2019-04-03

### Added
Expand Down
1 change: 1 addition & 0 deletions dist/services/classes/Tx.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class Tx extends _BcThing.BcThing {
async parseEvents(tx) {
try {
let logs = await this.parseLogs(tx.receipt.logs);
tx.receipt.logs = logs;
return logs.map(l => {
l = (0, _Event.formatEvent)(l, tx);
let event = Object.assign({}, l);
Expand Down
Loading

0 comments on commit ad29dd2

Please sign in to comment.