Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #607 from godwokenrises/fix-eth-get-filter-logs
Browse files Browse the repository at this point in the history
fix: `eth_getFilterLogs` should return all matched logs
  • Loading branch information
RetricSu authored Jan 12, 2023
2 parents 9e0aa96 + cfb181e commit bc7ee3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-server/src/methods/modules/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ export class Eth {
) {
return [];
} else {
return await this.getFilterChanges(args);
return await this.getLogs([filter]);
}
}

Expand Down

0 comments on commit bc7ee3d

Please sign in to comment.