Skip to content

Commit

Permalink
chore: decrease peers check delay
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Dec 22, 2024
1 parent 527e109 commit e344d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dashmate/src/core/waitForCorePeersConnected.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default async function waitForCorePeersConnected(rpcClient) {
hasPeers = peers && peers.length > 0;

if (!hasPeers) {
await wait(10000);
await wait(1000);
}
} while (!hasPeers);
}

0 comments on commit e344d6f

Please sign in to comment.