mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-09 20:45:38 +00:00
56b80d6f6d
* move por into storage proofs * use SeekableStream * adding serialization for por * remove leftovers * add empty block support * add basic por test * rename block exchange for consistency * add storageproofstests * moving timing to storageproofs * fix imports * fix imports * fix imports * add top level exports * move delete blocks helper to helpers * more import/export fixes * cleanup * more import fixes * fix unused warnings * detect corrupt blocks tests * add serialization tests * move init method around * bump asynctest * fix CID version * get rid of warning * wip: fix CI * increase CI timeout
18 lines
431 B
Nim
18 lines
431 B
Nim
import ./codex/teststores
|
|
import ./codex/testblockexchange
|
|
import ./codex/teststorageproofs
|
|
import ./codex/testasyncheapqueue
|
|
import ./codex/testchunking
|
|
import ./codex/testmanifest
|
|
import ./codex/testnode
|
|
import ./codex/teststorestream
|
|
import ./codex/testpurchasing
|
|
import ./codex/testsales
|
|
import ./codex/testerasure
|
|
import ./codex/testproving
|
|
|
|
# to check that everything compiles
|
|
import ../codex
|
|
|
|
{.warning[UnusedImport]: off.}
|