We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2356c07 commit 46cef06Copy full SHA for 46cef06
test/helpers/lnd.ts
@@ -69,12 +69,12 @@ export async function waitForActiveChannel(
69
}) => PromiseLike<{ channels: any }> | { channels: any };
70
},
71
nodeId: string,
72
- maxRetries = 20
+ maxRetries = 200
73
) {
74
let retries = 0;
75
76
while (retries < maxRetries) {
77
- await sleep(1000);
+ await sleep(100);
78
const { channels } = await lnd.listChannels({
79
peer: Buffer.from(nodeId, 'hex'),
80
activeOnly: true,
0 commit comments