style: format

This commit is contained in:
Derrick Hammer 2023-07-19 13:03:54 -04:00
parent 21b00ecfb6
commit dff60fdf32
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 3 deletions

View File

@ -9,9 +9,10 @@ export class EthClient extends Client {
public async method(method: string, params: any) {
return this.callModuleReturn(method, params);
}
public async register() {
return this.callModuleReturn("register");
}
public async register() {
return this.callModuleReturn("register");
}
}
export const createClient = factory<EthClient>(EthClient, MODULE);