@kyve/core-beta
Version:
🚀 The base KYVE node implementation.
23 lines (21 loc) • 632 B
text/typescript
import { Node } from "../..";
import { sleep } from "../../utils";
/**
* waitForCacheContinuation waits until a new bundle proposal is
* available. We don't need to sync the pool because the pool
* state already gets synced in the other main function "runNode"
* so we only listen here
*
* @method waitForCacheContinuation
* @param {Node} this
* @return {Promise<void>}
*/
export async function waitForCacheContinuation(
this: Node,
updatedAt: number
): Promise<void> {
// continue if a new proposal is available
while (updatedAt === parseInt(this.pool.bundle_proposal!.updated_at)) {
await sleep(1000);
}
}