Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix: interop dial blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos committed Jul 16, 2019
1 parent ce1b80e commit 8a362c6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion test/ipns-pubsub.js
Expand Up @@ -23,6 +23,14 @@ const config = {
API: '/ip4/0.0.0.0/tcp/0',
Gateway: '/ip4/0.0.0.0/tcp/0',
Swarm: []
},
Discovery: {
MDNS: {
Enabled: false
},
webRTCStar: {
Enabled: false
}
}
}

Expand All @@ -33,7 +41,10 @@ const spawnJsDaemon = (callback) => {
.spawn({
disposable: true,
args: ['--enable-namesys-pubsub'], // enable ipns over pubsub
config
config: {
...config,
Bootstrap: []
}
}, callback)
}

Expand Down

0 comments on commit 8a362c6

Please sign in to comment.