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

Commit

Permalink
fix: eth_getFilterLogs should return all matched logs
Browse files Browse the repository at this point in the history
  • Loading branch information
classicalliu committed Jan 11, 2023
1 parent 9e0aa96 commit cfb181e
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 cfb181e

Please sign in to comment.