From d2920d6d049c9f120d127009ba5405648f5d276e Mon Sep 17 00:00:00 2001 From: crusader Date: Fri, 28 Jul 2017 12:28:02 +0900 Subject: [PATCH] ing --- src/ts/@overflow/app/index.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ts/@overflow/app/index.tsx b/src/ts/@overflow/app/index.tsx index 354a6bf..a4b0458 100644 --- a/src/ts/@overflow/app/index.tsx +++ b/src/ts/@overflow/app/index.tsx @@ -112,13 +112,13 @@ class Application { private initRpcClient(): Promise { const rpcClient = new Promise((resolve, reject) => { let client = new WebSocketRPC(this.config.rpc.url); - // client.initialize() - // .then(() => { - // resolve(client); - // }) - // .catch((err: any) => { - // reject(err); - // }); + client.initialize() + .then(() => { + resolve(client); + }) + .catch((err: any) => { + reject(err); + }); resolve(client); });