@node-lightning/wire
Version:
Lightning Network Wire Protocol
12 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryState = void 0;
class QueryState {
constructor(firstBlock, numBlocks = 4294967295 - firstBlock) {
this.firstBlock = firstBlock;
this.numBlocks = numBlocks;
this.scids = [];
}
}
exports.QueryState = QueryState;
//# sourceMappingURL=QueryState.js.map