diff --git a/tests/ethprocs.nim b/tests/ethprocs.nim index 6fa1bcb..6e263d5 100644 --- a/tests/ethprocs.nim +++ b/tests/ethprocs.nim @@ -1,4 +1,4 @@ -import ../rpcserver, nimcrypto, json, stint, strutils, ethtypes, stintjsonconverters +import ../rpcserver, nimcrypto, json, stint, strutils, ethtypes, stintjson #[ For details on available RPC calls, see: https://github.com/ethereum/wiki/wiki/JSON-RPC diff --git a/tests/stintJsonConverters.nim b/tests/stintjson.nim similarity index 100% rename from tests/stintJsonConverters.nim rename to tests/stintjson.nim diff --git a/tests/testethcalls.nim b/tests/testethcalls.nim index 857762b..de646da 100644 --- a/tests/testethcalls.nim +++ b/tests/testethcalls.nim @@ -10,7 +10,7 @@ srv.address = "localhost" srv.port = Port(8546) # importing ethprocs creates the server rpc calls -import stint, ethtypes, ethprocs, stintJsonConverters +import stint, ethtypes, ethprocs, stintjson # generate all client ethereum rpc calls createRpcSigs(sourceDir & DirSep & "ethcallsigs.nim")