@kyve/core-beta
Version:
🚀 The base KYVE node implementation.
15 lines (13 loc) • 361 B
text/typescript
import { Node } from "../..";
/**
* 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}
*/
export function continueRound(this: Node): boolean {
return true;
}