Merge pull request #77 from status-im/FixRpcImports

Change import from eth-rpc to json_rpc
This commit is contained in:
Yuriy Glukhov 2018-07-20 11:14:47 +03:00 committed by GitHub
commit 3e201aab03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# at your option.
# This file may not be copied, modified, or distributed except according to
# those terms.
import eth-rpc/server, nimcrypto
import json_rpc/server, nimcrypto
import ../config
proc setupCommonRPC*(server: RpcServer) =

View File

@ -6,7 +6,7 @@
# at your option.
# This file may not be copied, modified, or distributed except according to
# those terms.
import nimcrypto, eth-rpc/server, eth_p2p
import nimcrypto, json_rpc/server, eth_p2p
import ../config
proc setupP2PRPC*(server: EthereumNode, rpcsrv: RpcServer) =