From cea5ba513119a1df2d295f5ac2be6b3db73e66ab Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 16 Nov 2022 12:04:56 -0500 Subject: [PATCH] *Explicitly define protocol as a bag option --- src/index.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0c8a0de..eb11837 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,10 +9,15 @@ export default class DHTOnline extends DHTOnlineBase { constructor( swarm: any, - { id = swarm.keyPair.publicKey, data = {}, ...opts } = {} + { + id = swarm.keyPair.publicKey, + data = {}, + protocol = undefined, + ...opts + } = {} ) { super(id, opts); - this.flood = new DHTFlood({ id, swarm, ...opts }); + this.flood = new DHTFlood({ id, swarm, protocol, ...opts }); this.swarm = swarm; this.flood.on("peer-open", (peer) => this.handlePeerAdd(peer));