Compare commits

..

No commits in common. "22023baedc8c126134d96156c9dba492b275d4c6" and "6099a6c4f62aa49a9f8d21afbe13e3f3dfd5e60e" have entirely different histories.

2 changed files with 2 additions and 2 deletions

2
dist/peer.js vendored
View File

@ -43,7 +43,7 @@ class Peer {
this._socket = new socket_js_1.default({
remoteAddress: raw.remoteHost,
remotePort: raw.remotePort,
remotePublicKey: await maybeGetAsyncProperty(self._peer.remotePublicKey),
remotePublicKey: self._peer.remotePublicKey,
async write(data, cb) {
if (pipe) {
pipe.send(data);

View File

@ -105,7 +105,7 @@ export default class Peer {
this._socket = new Socket({
remoteAddress: raw.remoteHost,
remotePort: raw.remotePort,
remotePublicKey: await maybeGetAsyncProperty(self._peer.remotePublicKey),
remotePublicKey: self._peer.remotePublicKey,
async write(data: any, cb: Function) {
if (pipe) {
pipe.send(data);