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

Commit

Permalink
fix: remove delay
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Jan 10, 2017
1 parent aa29598 commit 557476c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/components/go-online.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ module.exports = (self) => {
self._blockService.goOnline(self._bitswap)
cb()
},
(cb) => self._pubsub.start(cb),
(cb) => self._pubsub.start(cb) // ,
// For all of the protocols to handshake with each other
(cb) => setTimeout(cb, 1000)
// (cb) => setTimeout(cb, 1000) // Still not decided if we want this
], callback)
})
}
Expand Down

0 comments on commit 557476c

Please sign in to comment.