UNPKG

@kyve/core-beta

Version:

🚀 The base KYVE node implementation.

17 lines (16 loc) • 454 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.continueRound = void 0; /** * continueRound is only used for test purposes to allow easier unit testing. * It will always return true and is mocked in unit tests to control the number * of proposal rounds. * * @method continueRound * @param {Node} this * @return {boolean} */ function continueRound() { return true; } exports.continueRound = continueRound;