diff --git a/Makefile b/Makefile index 76bfae7e6..b70e60f2e 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ GITHUB_REPOS := \ status-im/nim-eth \ status-im/nim-byteutils \ status-im/nim-http-utils \ - status-im/nim-asyncdispatch2 \ + status-im/nim-chronos \ status-im/nim-json-rpc \ status-im/nim-faststreams \ status-im/nim-std-shims \ diff --git a/nimbus.nimble b/nimbus.nimble index 71ca4c7f1..ae5937315 100644 --- a/nimbus.nimble +++ b/nimbus.nimble @@ -14,9 +14,9 @@ requires "nim >= 0.19", "nimcrypto", "stint", "json_rpc", - "asyncdispatch2", + "chronos", "bncurve", - "https://github.com/status-im/nim-eth", + "eth", "std_shims" proc buildBinary(name: string, srcDir = ".", lang = "c") = diff --git a/nimbus/config.nim b/nimbus/config.nim index 35f4fb224..2c5de41fc 100644 --- a/nimbus/config.nim +++ b/nimbus/config.nim @@ -9,7 +9,7 @@ import parseopt, strutils, macros, os, times, - asyncdispatch2, eth/[keys, common, p2p], chronicles, nimcrypto/hash, + chronos, eth/[keys, common, p2p], chronicles, nimcrypto/hash, ./db/select_backend, ./vm/interpreter/vm_forks diff --git a/nimbus/nimbus.nim b/nimbus/nimbus.nim index c71ed1e89..2b8e42057 100644 --- a/nimbus/nimbus.nim +++ b/nimbus/nimbus.nim @@ -10,7 +10,7 @@ import os, strutils, net, eth/keys, db/[storage_types, db_chain, select_backend], eth/common as eth_common, eth/p2p as eth_p2p, - asyncdispatch2, json_rpc/rpcserver, chronicles, + chronos, json_rpc/rpcserver, chronicles, eth/p2p/rlpx_protocols/[eth_protocol, les_protocol], eth/p2p/blockchain_sync, config, genesis, rpc/[common, p2p, debug, whisper], p2p/chain,