Revert "*Explicitly define protocol as a bag option"
This reverts commit cea5ba5131
.
This commit is contained in:
parent
b02a7f5a2c
commit
73846a5eda
|
@ -9,15 +9,10 @@ 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, protocol, ...opts });
|
this.flood = new DHTFlood({ id, swarm, ...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