Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: continue MerkleTreejs feat #31

Merged
merged 1 commit into from
Dec 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@
def create_merkle_tree_root_10_leaves():
leafs = [str(i) for i in range(10)]
tree = MerkleTree(leafs)
result = "f8b45f3031274577651c6d43e7ec3f7361e82b2295e24a9b369693354d3a2db8"
assert tree.root == result
result = "2a3eb5e4fd7ca38eebd660d4b9879fd3e235cd240772bccdfadfa6c1529b4711"
assert tree.root.hex() == result


def create_merkle_tree_root_100_leaves():
leafs = [str(i) for i in range(100)]
tree = MerkleTree(leafs)
result = "8e92f7efa075e532b920ef39adb04a0147ac84d99315584dbd2a1cb868019c35"
assert tree.root == result
result = "b46bf20bce2aafc0abe89f56509648c98fbad9f969d12869b40b4472845e2318"
assert tree.root.hex() == result

Check notice

Code scanning / Bandit

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.


def create_merkle_tree_root_1000_leaves():
leafs = [str(i) for i in range(1000)]
tree = MerkleTree(leafs)
result = "e66024476f6ef8f431f07dca6ea0d10dd904dda4b47488a49e75f8671ba733ee"
assert tree.root == result
result = "fc0bdf832532d9d94510c8643720f63f22db9996f07965e1d1da9fb0d3fd7144"
assert tree.root.hex() == result

Check notice

Code scanning / Bandit

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.


@pytest.mark.benchmark(group="MerkleTreeRoot", timer=time.time)
Expand Down
Loading