Skip to content

Commit

Permalink
Merge pull request #2613 from ethereum/issue/2611
Browse files Browse the repository at this point in the history
EventSubscriptionFactory fixed
  • Loading branch information
nivida committed Apr 1, 2019
2 parents 9f3c712 + 37053af commit 2394112
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class EventSubscriptionFactory {
this.utils,
this.formatters,
contract,
new GetPastLogsMethod(this.utils, this.formatters),
new GetPastLogsMethod(this.utils, this.formatters, contract),
eventLogDecoder,
abiItemModel
);
Expand All @@ -73,7 +73,7 @@ export default class EventSubscriptionFactory {
this.utils,
this.formatters,
contract,
new GetPastLogsMethod(this.utils, this.formatters),
new GetPastLogsMethod(this.utils, this.formatters, contract),
allEventsLogDecoder,
contract.abiModel
);
Expand Down

0 comments on commit 2394112

Please sign in to comment.