This website requires JavaScript.
Explore
Help
Sign In
status-im
/
nim-codex
mirror of
https://github.com/status-im/nim-codex.git
Watch
2
Star
0
Fork
You've already forked nim-codex
0
Code
Issues
Projects
Releases
Wiki
Activity
e871859a96
nim-codex
/
tests
/
codex
/
testmerkletree.nim
5 lines
98 B
Nim
Raw
Normal View
History
Unescape
Escape
Merkle tree construction (#504) * Building a merkle tree * Obtaining merkle proof from a tree --------- Co-authored-by: benbierens <thatbenbierens@gmail.com>
2023-08-15 11:23:35 +00:00
import
.
/
merkletree
/
testmerkletree
Blockexchange uses merkle root and index to fetch blocks (#566) * Blockexchange uses merkle root and index to fetch blocks * Links the network store getTree to the local store. * Update codex/stores/repostore.nim Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com> Signed-off-by: Tomasz Bekas <tomasz.bekas@gmail.com> * Rework erasure.nim to include recent cleanup * Revert accidential changes to lib versions * Addressing review comments * Storing proofs instead of trees * Fix a comment * Fix broken tests * Fix for broken testerasure.nim * Addressing PR comments --------- Signed-off-by: Tomasz Bekas <tomasz.bekas@gmail.com> Co-authored-by: benbierens <thatbenbierens@gmail.com> Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com>
2023-11-14 12:02:17 +00:00
import
.
/
merkletree
/
testcoders
Merkle tree construction (#504) * Building a merkle tree * Obtaining merkle proof from a tree --------- Co-authored-by: benbierens <thatbenbierens@gmail.com>
2023-08-15 11:23:35 +00:00
{.
warning
[
UnusedImport
]
:
off
.
}