*Set custodial to false
This commit is contained in:
parent
b2f2c7e9f0
commit
918c49f146
|
@ -18,7 +18,7 @@ export default class DHT {
|
||||||
_relays = {};
|
_relays = {};
|
||||||
constructor(opts = {}) {
|
constructor(opts = {}) {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
opts.custodial = true;
|
opts.custodial = false;
|
||||||
this._options = opts;
|
this._options = opts;
|
||||||
this._wsPool = createRoundRobin();
|
this._wsPool = createRoundRobin();
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ export default class DHT {
|
||||||
|
|
||||||
constructor(opts = {}) {
|
constructor(opts = {}) {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
opts.custodial = true;
|
opts.custodial = false;
|
||||||
this._options = opts;
|
this._options = opts;
|
||||||
this._wsPool = createRoundRobin();
|
this._wsPool = createRoundRobin();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue