fix: args should not be var args
This commit is contained in:
parent
833a007a1f
commit
32bf0a42e2
|
@ -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],
|
||||
|
|
Loading…
Reference in New Issue