*Explicitly define protocol as a bag option
This commit is contained in:
parent
cf6e0a986f
commit
cea5ba5131
|
@ -9,10 +9,15 @@ export default class DHTOnline extends DHTOnlineBase {
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
swarm: any,
|
swarm: any,
|
||||||
{ id = swarm.keyPair.publicKey, data = {}, ...opts } = {}
|
{
|
||||||
|
id = swarm.keyPair.publicKey,
|
||||||
|
data = {},
|
||||||
|
protocol = undefined,
|
||||||
|
...opts
|
||||||
|
} = {}
|
||||||
) {
|
) {
|
||||||
super(id, opts);
|
super(id, opts);
|
||||||
this.flood = new DHTFlood({ id, swarm, ...opts });
|
this.flood = new DHTFlood({ id, swarm, protocol, ...opts });
|
||||||
this.swarm = swarm;
|
this.swarm = swarm;
|
||||||
|
|
||||||
this.flood.on("peer-open", (peer) => this.handlePeerAdd(peer));
|
this.flood.on("peer-open", (peer) => this.handlePeerAdd(peer));
|
||||||
|
|
Loading…
Reference in New Issue