From 1667119f34bcdf3c82e71faf1f56d57b267069a9 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Thu, 31 May 2018 12:02:21 +0100 Subject: [PATCH] Fix case sensitive import on nix filesystems and reduce name length --- tests/ethprocs.nim | 2 +- tests/{stintJsonConverters.nim => stintjson.nim} | 0 tests/testethcalls.nim | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/{stintJsonConverters.nim => stintjson.nim} (100%) 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")