mirror of
https://github.com/AtHeartEngineering/lodestar.git
synced 2026-01-09 22:28:28 -05:00
* Bump typescript to 4.4.0 * Type catch e clause * Bump observable-fns * Type lodestar error * Skip readme checks
10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
import {init} from "@chainsafe/bls";
|
|
|
|
// blst-native initialization is syncronous
|
|
// Initialize bls here instead of in before() so it's available inside describe() blocks
|
|
init("blst-native").catch((e: Error) => {
|
|
// eslint-disable-next-line no-console
|
|
console.error(e);
|
|
process.exit(1);
|
|
});
|