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

Commit 4495b3a

Browse files
committed
fix: remove delay
1 parent aa29598 commit 4495b3a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/core/components/go-online.js

+2-2
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
}

test/core/both/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ describe('--both', () => {
1010
require('./test-generic')
1111
require('./test-init')
1212
require('./test-object')
13-
require('./test-pubsub')
1413
})
File renamed without changes.

0 commit comments

Comments
 (0)