Fix a stupid RPC bug which caused the port togo over 65535

This commit is contained in:
Leonid Logvinov
2018-01-17 15:35:14 +01:00
parent df9c2b193e
commit 59a39ac57d

View File

@@ -41,7 +41,7 @@ export class RPC {
method,
params,
});
this._url += 1;
this._id += 1;
return payload;
}
private async _sendAsync(payload: string): Promise<any> {