*Set custodial to false

This commit is contained in:
Derrick Hammer 2022-07-21 14:58:32 -04:00
parent b2f2c7e9f0
commit 918c49f146
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -18,7 +18,7 @@ export default class DHT {
_relays = {};
constructor(opts = {}) {
// @ts-ignore
opts.custodial = true;
opts.custodial = false;
this._options = opts;
this._wsPool = createRoundRobin();
}

View File

@ -24,7 +24,7 @@ export default class DHT {
constructor(opts = {}) {
// @ts-ignore
opts.custodial = true;
opts.custodial = false;
this._options = opts;
this._wsPool = createRoundRobin();
}