fixes path in tests

This commit is contained in:
andri lim 2019-02-06 17:43:44 +07:00 committed by zah
parent 601350d8d0
commit 4466deff37
3 changed files with 5 additions and 3 deletions

View File

@ -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/"

View File

@ -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

View File

@ -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":