Say what a peer did with each receipt segment, and leave no drop unlogged

This commit is contained in:
2026-09-01 17:59:37 +02:00
parent 67c0402def
commit 61985fb914
7 changed files with 113 additions and 36 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export class SendWindow {
}
/** Resolves 0 once nothing is left on the wire, or with what still is. */
idle(timeout: number, signal?: AbortSignal): Promise<number> {
idle(timeout: number, signal: AbortSignal | undefined): Promise<number> {
return this.idleWaiters.wait(() => this.unfinished(), timeout, signal);
}
}