UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

13 lines 260 B
export class LocalStatusCache { status; constructor(status) { this.status = status; } get() { return this.status; } update(localStatus) { this.status = localStatus; } } //# sourceMappingURL=statusCache.js.map