Compare commits
No commits in common. "ae6609f0b07dea3afed3f528d42b55d771d81a3d" and "e2ed9ed1847b456d90f901f6e5bc8db11f8cb94a" have entirely different histories.
ae6609f0b0
...
e2ed9ed184
|
@ -8,6 +8,5 @@ export declare class PeerDiscovery {
|
||||||
private _sources;
|
private _sources;
|
||||||
registerSource(name: string, source: PeerSource): boolean;
|
registerSource(name: string, source: PeerSource): boolean;
|
||||||
removeSource(name: string): boolean;
|
removeSource(name: string): boolean;
|
||||||
removeAllSources(): void;
|
|
||||||
discover(pubkey: string | Buffer, options?: {}): Promise<Peer | boolean>;
|
discover(pubkey: string | Buffer, options?: {}): Promise<Peer | boolean>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,9 +21,6 @@ class PeerDiscovery {
|
||||||
this._sources.delete(name);
|
this._sources.delete(name);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
removeAllSources() {
|
|
||||||
this._sources.clear();
|
|
||||||
}
|
|
||||||
async discover(pubkey, options = {}) {
|
async discover(pubkey, options = {}) {
|
||||||
if (!b4a_1.default.isBuffer(pubkey)) {
|
if (!b4a_1.default.isBuffer(pubkey)) {
|
||||||
pubkey = b4a_1.default.from(pubkey, "hex");
|
pubkey = b4a_1.default.from(pubkey, "hex");
|
||||||
|
|
|
@ -32,10 +32,6 @@ export class PeerDiscovery {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public removeAllSources(): void {
|
|
||||||
this._sources.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async discover(
|
public async discover(
|
||||||
pubkey: string | Buffer,
|
pubkey: string | Buffer,
|
||||||
options = {}
|
options = {}
|
||||||
|
|
Loading…
Reference in New Issue