refactor: temp use js only bls

This commit is contained in:
Derrick Hammer 2023-07-11 02:33:28 -04:00
parent a5c01533fe
commit a6759ec243
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export default abstract class BaseClient {
} }
public async sync(): Promise<void> { public async sync(): Promise<void> {
await init(isNode ? "blst-native" : "herumi"); await init("herumi");
await this._sync(); await this._sync();
} }