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 6ddd9ed commit b6f75b0Copy full SHA for b6f75b0
src/nodes/NodeManager.ts
@@ -144,7 +144,7 @@ class NodeManager {
144
const seedNodes = this.nodeConnectionManager.getSeedNodes();
145
const allInactive = !seedNodes
146
.map((nodeId) => this.nodeConnectionManager.hasConnection(nodeId))
147
- .reduce((a, b) => a || b);
+ .reduce((a, b) => a || b, false);
148
try {
149
if (allInactive) {
150
this.logger.debug(
0 commit comments