ethp2p was renamed to eth_p2p
This commit is contained in:
parent
05703fc86f
commit
eacf13ed97
|
@ -12,8 +12,8 @@ requires "nim >= 0.18.1",
|
||||||
"rlp",
|
"rlp",
|
||||||
"stint",
|
"stint",
|
||||||
"https://github.com/status-im/nim-eth-common",
|
"https://github.com/status-im/nim-eth-common",
|
||||||
"https://github.com/status-im/nim-eth-p2p",
|
"eth_p2p",
|
||||||
"https://github.com/status-im/nim-eth-keyfile"
|
"eth_keyfile"
|
||||||
|
|
||||||
proc test(name: string, lang = "c") =
|
proc test(name: string, lang = "c") =
|
||||||
if not dirExists "build":
|
if not dirExists "build":
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# This file may not be copied, modified, or distributed except according to
|
# This file may not be copied, modified, or distributed except according to
|
||||||
# those terms.
|
# those terms.
|
||||||
|
|
||||||
import parseopt, strutils, net, ethp2p, eth_keyfile, eth_keys, json,
|
import parseopt, strutils, net, eth_p2p, eth_keyfile, eth_keys, json,
|
||||||
nimcrypto
|
nimcrypto
|
||||||
|
|
||||||
const
|
const
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
# those terms.
|
# those terms.
|
||||||
|
|
||||||
import asyncdispatch, net # stdlib modules
|
import asyncdispatch, net # stdlib modules
|
||||||
import ethp2p, eth_keys, nimcrypto # external modules
|
import eth_p2p, eth_keys, nimcrypto # external modules
|
||||||
import service, ../config # internal modules
|
import service, ../config # internal modules
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
Loading…
Reference in New Issue