From 8d1174b1365cd9ae96ccbad145aa644d2ca1d780 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Tue, 19 Jun 2018 18:17:56 +0100 Subject: [PATCH] Updated paths to use rpcserver now that streamservers are in there --- tests/testethcalls.nim | 4 ++-- tests/testrpcmacro.nim | 4 ++-- tests/testserverclient.nim | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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()