From cd9dad47dcdcd6314c9dfbead75086fb0ce34609 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 27 Mar 2023 12:05:55 -0400 Subject: [PATCH] *Update dist --- dist/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/client.js b/dist/client.js index af424a7..2f1bb43 100644 --- a/dist/client.js +++ b/dist/client.js @@ -5,7 +5,7 @@ export class EthClient extends Client { return this.callModuleReturn("ready"); } async method(method, params) { - return this.callModuleReturn("method", params); + return this.callModuleReturn(method, params); } } export const createClient = factory(EthClient, RPC_MODULE);