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"
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
||||||
nim --version
|
nim --version
|
||||||
nimble --version
|
nimble --version
|
||||||
nimble install -y --depsOnly
|
nimble install -y
|
||||||
nimble test
|
nimble test
|
||||||
nimble build_dcli
|
nimble build_dcli
|
||||||
nimble build_fuzzers
|
nimble build_fuzzers
|
||||||
|
|
|
@ -106,7 +106,7 @@ task test_discv5_full, "Run discovery v5 and its dependencies tests":
|
||||||
test_discv5_task()
|
test_discv5_task()
|
||||||
|
|
||||||
task build_dcli, "Build dcli":
|
task build_dcli, "Build dcli":
|
||||||
buildBinary("eth/p2p/discoveryv5/dcli")
|
buildBinary("tools/dcli")
|
||||||
|
|
||||||
import os, strutils
|
import os, strutils
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ import
|
||||||
std/[options, strutils, tables, sets],
|
std/[options, strutils, tables, sets],
|
||||||
confutils, confutils/std/net, chronicles, chronicles/topics_registry,
|
confutils, confutils/std/net, chronicles, chronicles/topics_registry,
|
||||||
chronos, metrics, metrics/chronos_httpserver, stew/byteutils, stew/bitops2,
|
chronos, metrics, metrics/chronos_httpserver, stew/byteutils, stew/bitops2,
|
||||||
../../keys, ../../net/nat,
|
./eth/keys, ./eth/net/nat,
|
||||||
"."/[enr, node],
|
./eth/p2p/discoveryv5/[enr, node],
|
||||||
"."/protocol as discv5_protocol
|
./eth/p2p/discoveryv5/protocol as discv5_protocol
|
||||||
|
|
||||||
type
|
type
|
||||||
DiscoveryCmd* = enum
|
DiscoveryCmd* = enum
|
Loading…
Reference in New Issue