UNPKG

@kyve/core-beta

Version:

🚀 The base KYVE node implementation.

33 lines (28 loc) • 940 B
import { Node, standardizeJSON } from "../.."; /** * validateRuntime checks if the runtime of the pool matches with the runtime of * the node. If it does not match the node will exit. * * @method validateRuntime * @param {Node} this * @return {void} */ export function validateRuntime(this: Node): void { try { this.logger.debug(`Comparing pool runtime with protocol node runtime`); if (this.pool.data!.runtime !== this.runtime.name) { this.logger.fatal( `Specified pool does not match the integration runtime! Exiting ...` ); this.logger.fatal( `Found = ${this.runtime.name} required = ${this.pool.data!.runtime}` ); process.exit(1); } this.logger.info(`Node running on runtime = ${this.runtime.name}`); } catch (err) { this.logger.fatal(`Error while validating runtime. Exiting ...`); this.logger.fatal(standardizeJSON(err)); process.exit(1); } }