Updated paths to use rpcserver now that streamservers are in there

This commit is contained in:
coffeepots 2018-06-19 18:17:56 +01:00
parent 28ce222e23
commit 8d1174b136
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
import unittest, json, tables import unittest, json, tables
import ../rpcclient, ../rpcstreamservers import ../rpcclient, ../rpcserver
import stint, ethtypes, ethprocs, stintjson, nimcrypto, ethhexstrings import stint, ethtypes, ethprocs, stintjson, nimcrypto, ethhexstrings, chronicles
from os import getCurrentDir, DirSep from os import getCurrentDir, DirSep
from strutils import rsplit from strutils import rsplit

View File

@ -1,5 +1,5 @@
import unittest, json, tables import unittest, json, tables, chronicles
import ../rpcstreamservers import ../rpcserver
type type
# some nested types to check object parsing # some nested types to check object parsing

View File

@ -1,5 +1,5 @@
import unittest, json import unittest, json, chronicles
import ../rpcclient, ../rpcstreamservers import ../rpcclient, ../rpcserver
var srv = newRpcStreamServer(["localhost:8545"]) var srv = newRpcStreamServer(["localhost:8545"])
var client = newRpcClient() var client = newRpcClient()