Removing unused import, some tidying

This commit is contained in:
coffeepots 2018-05-30 10:46:08 +01:00
parent cdcd5204e3
commit 66f9c63f01
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import asyncnet, asyncdispatch, tables, json, oids, macros
import ../jsonconverters
import asyncnet, asyncdispatch, tables, json, macros
import ".." / [jsonconverters, jsonmarshal]
type
RpcClient* = ref object
@ -90,8 +90,6 @@ proc connect*(self: RpcClient, address: string, port: Port) {.async.} =
self.port = port
asyncCheck processData(self)
import ../ jsonmarshal
proc createRpcProc(procName, parameters, callBody: NimNode): NimNode =
# parameters come as a tree
var paramList = newSeq[NimNode]()