Fix case sensitive import on nix filesystems and reduce name length

This commit is contained in:
coffeepots 2018-05-31 12:02:21 +01:00
parent dd18b760e5
commit 1667119f34
3 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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")