*async fetch remotePublicKey
This commit is contained in:
parent
6099a6c4f6
commit
94342e6929
|
@ -105,7 +105,7 @@ export default class Peer {
|
||||||
this._socket = new Socket({
|
this._socket = new Socket({
|
||||||
remoteAddress: raw.remoteHost,
|
remoteAddress: raw.remoteHost,
|
||||||
remotePort: raw.remotePort,
|
remotePort: raw.remotePort,
|
||||||
remotePublicKey: self._peer.remotePublicKey,
|
remotePublicKey: await maybeGetAsyncProperty(self._peer.remotePublicKey),
|
||||||
async write(data: any, cb: Function) {
|
async write(data: any, cb: Function) {
|
||||||
if (pipe) {
|
if (pipe) {
|
||||||
pipe.send(data);
|
pipe.send(data);
|
||||||
|
|
Loading…
Reference in New Issue