diff --git a/nimbus.nimble b/nimbus.nimble index a936c8f12..71ca4c7f1 100644 --- a/nimbus.nimble +++ b/nimbus.nimble @@ -38,6 +38,8 @@ task test, "Run tests": exec "nim c premix/debug" exec "nim c premix/dumper" exec "nim c premix/hunter" + exec "nim c tests/tracerTestGen" + exec "nim c tests/persistBlockTestGen" task nimbus, "Build Nimbus": buildBinary "nimbus", "nimbus/" diff --git a/tests/persistBlockTestGen.nim b/tests/persistBlockTestGen.nim index 0c800397d..be0c6b356 100644 --- a/tests/persistBlockTestGen.nim +++ b/tests/persistBlockTestGen.nim @@ -1,5 +1,5 @@ import - json, os, eth/common, stint, chronicles, byteutils, nimcrypto, rlp, + json, os, eth/common, stint, chronicles, byteutils, nimcrypto, eth/rlp, eth/trie/db, ../nimbus/db/[db_chain, capturedb, storage_types, select_backend], ../nimbus/[tracer, vm_types, config], ../nimbus/p2p/chain diff --git a/tests/test_state_db.nim b/tests/test_state_db.nim index c4a7c4428..295071dc3 100644 --- a/tests/test_state_db.nim +++ b/tests/test_state_db.nim @@ -5,8 +5,8 @@ # * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) # at your option. This file may not be copied, modified, or distributed except according to those terms. -import unittest, strutils, eth_trie/[hexary, db], - ../nimbus/db/state_db, byteutils, eth_common, +import unittest, strutils, eth/trie/[hexary, db], + ../nimbus/db/state_db, byteutils, eth/common, ranges suite "Account State DB":