From 8b42296553430301c92cd608c1b0c218ac4d7edb Mon Sep 17 00:00:00 2001 From: coffeepots Date: Fri, 13 Jul 2018 16:36:06 +0100 Subject: [PATCH] Cosmetic spacing update --- json_rpc/clients/socketclient.nim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/json_rpc/clients/socketclient.nim b/json_rpc/clients/socketclient.nim index 236dd95..da89e0d 100644 --- a/json_rpc/clients/socketclient.nim +++ b/json_rpc/clients/socketclient.nim @@ -16,10 +16,8 @@ proc call*(self: RpcSocketClient, name: string, params: JsonNode): Future[Response] {.async.} = ## Remotely calls the specified RPC method. let id = self.getNextId() + var value = $rpcCallNode(name, params, id) & "\c\l" - var - value = - $rpcCallNode(name, params, id) & "\c\l" if self.transport.isNil: var connectStr = "" raise newException(ValueError, "Transport is not initialised (missing a call to connect?)")