diff --git a/tests/testethcalls.nim b/tests/testethcalls.nim index f3b0c5b..736cbba 100644 --- a/tests/testethcalls.nim +++ b/tests/testethcalls.nim @@ -1,6 +1,6 @@ import unittest, json, tables -import ../rpcclient, ../rpcstreamservers -import stint, ethtypes, ethprocs, stintjson, nimcrypto, ethhexstrings +import ../rpcclient, ../rpcserver +import stint, ethtypes, ethprocs, stintjson, nimcrypto, ethhexstrings, chronicles from os import getCurrentDir, DirSep from strutils import rsplit diff --git a/tests/testrpcmacro.nim b/tests/testrpcmacro.nim index b8bcb70..89573e9 100644 --- a/tests/testrpcmacro.nim +++ b/tests/testrpcmacro.nim @@ -1,5 +1,5 @@ -import unittest, json, tables -import ../rpcstreamservers +import unittest, json, tables, chronicles +import ../rpcserver type # some nested types to check object parsing diff --git a/tests/testserverclient.nim b/tests/testserverclient.nim index 4c8f8be..7495d77 100644 --- a/tests/testserverclient.nim +++ b/tests/testserverclient.nim @@ -1,5 +1,5 @@ -import unittest, json -import ../rpcclient, ../rpcstreamservers +import unittest, json, chronicles +import ../rpcclient, ../rpcserver var srv = newRpcStreamServer(["localhost:8545"]) var client = newRpcClient()