Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
edjroz committed Dec 5, 2019
1 parent f552bba commit 9b39f24
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ package main

import (
"crypto/sha256"
"fmt"

"github.com/onrik/gomerkle"
"github.com/pokt-network/gomerkle"
)

func main() {
Expand All @@ -37,6 +38,6 @@ func main() {
// Proof for Jessie
proof := tree.GetProof(4)
leaf := tree.GetLeaf(4)
println(tree.VerifyProof(proof, tree.Root(), leaf))
fmt.Println(tree.VerifyProof(proof, tree.Root(), leaf))
}
```

0 comments on commit 9b39f24

Please sign in to comment.