Merge staging feb4 (#7910)

This commit is contained in:
Andrey Sobolev
2025-02-04 22:29:27 +07:00
committed by GitHub
parent 33cf7599cf
commit 04a282c0f8
21 changed files with 205 additions and 72 deletions
@@ -804,6 +804,10 @@ class Connection implements ClientConnection {
return this.sendRequest({ method: 'loadChunk', params: [domain, idx] })
}
async getDomainHash (domain: Domain): Promise<string> {
return await this.sendRequest({ method: 'getDomainHash', params: [domain] })
}
closeChunk (idx: number): Promise<void> {
return this.sendRequest({ method: 'closeChunk', params: [idx] })
}