Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 557476c

Browse files
committed
fix: remove delay
1 parent aa29598 commit 557476c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/components/go-online.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ module.exports = (self) => {
3131
self._blockService.goOnline(self._bitswap)
3232
cb()
3333
},
34-
(cb) => self._pubsub.start(cb),
34+
(cb) => self._pubsub.start(cb) // ,
3535
// For all of the protocols to handshake with each other
36-
(cb) => setTimeout(cb, 1000)
36+
// (cb) => setTimeout(cb, 1000) // Still not decided if we want this
3737
], callback)
3838
})
3939
}

0 commit comments

Comments
 (0)