You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
p4u ddda6bfa62 census-service: remove \u0000 character from dump 5 years ago
..
README.md Add snapshot and dump methods 5 years ago
tree.go census-service: remove \u0000 character from dump 5 years ago

README.md

dvote Tree

Implementation of dvote tree structure. Currently based on iden3 merkle tree.

Example of usage:

  T := tree.Tree
  if T.Init() != nil { fmt.Println("Cannot create tree database") }
  err := T.AddClaim([]byte("Hello you!"))
  if err != nil {
    fmt.Println("Claim already exist")
  }
  mpHex, err := T.GenProof([]byte("Hello you!"))
  fmt.Println(mpHex)
  fmt.Println(T.CheckProof([]byte("Hello you!"), mpHex))
  T.Close()

To-Do

Avoid duplicates on dump/snapshot