fix: args should not be var args

This commit is contained in:
Derrick Hammer 2023-10-23 20:45:07 -04:00
parent 833a007a1f
commit 32bf0a42e2
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ export default class VerifyingProvider implements IClientVerifyingProvider {
};
}
private async getLogs(...args: any) {
private async getLogs(args: any) {
const { result: logs, success } = await this.rpc.request({
method: "eth_getLogs",
params: [args],