mirror of https://github.com/status-im/nim-eth.git
Move dcli tool to a tools folder (#584)
This commit is contained in:
parent
20d2d318f0
commit
4d55bfc9e8
|
@ -239,7 +239,7 @@ jobs:
|
|||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
||||
nim --version
|
||||
nimble --version
|
||||
nimble install -y --depsOnly
|
||||
nimble install -y
|
||||
nimble test
|
||||
nimble build_dcli
|
||||
nimble build_fuzzers
|
||||
|
|
|
@ -106,7 +106,7 @@ task test_discv5_full, "Run discovery v5 and its dependencies tests":
|
|||
test_discv5_task()
|
||||
|
||||
task build_dcli, "Build dcli":
|
||||
buildBinary("eth/p2p/discoveryv5/dcli")
|
||||
buildBinary("tools/dcli")
|
||||
|
||||
import os, strutils
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@ import
|
|||
std/[options, strutils, tables, sets],
|
||||
confutils, confutils/std/net, chronicles, chronicles/topics_registry,
|
||||
chronos, metrics, metrics/chronos_httpserver, stew/byteutils, stew/bitops2,
|
||||
../../keys, ../../net/nat,
|
||||
"."/[enr, node],
|
||||
"."/protocol as discv5_protocol
|
||||
./eth/keys, ./eth/net/nat,
|
||||
./eth/p2p/discoveryv5/[enr, node],
|
||||
./eth/p2p/discoveryv5/protocol as discv5_protocol
|
||||
|
||||
type
|
||||
DiscoveryCmd* = enum
|
Loading…
Reference in New Issue