Skip to content

Commit

Permalink
Merge pull request #342 from ConsenSys/develop
Browse files Browse the repository at this point in the history
v0.9.1
  • Loading branch information
gbotrel committed Feb 14, 2023
2 parents 1a7a299 + fa13388 commit 8f7ca09
Show file tree
Hide file tree
Showing 581 changed files with 59,838 additions and 9,606 deletions.
5 changes: 4 additions & 1 deletion accumulator/merkletree/tree.go
Expand Up @@ -77,7 +77,10 @@ func sum(h hash.Hash, data ...[]byte) []byte {

for _, d := range data {
// the Hash interface specifies that Write never returns an error
_, _ = h.Write(d)
_, err := h.Write(d)
if err != nil {
panic(err)
}
}
return h.Sum(nil)
}
Expand Down
28 changes: 28 additions & 0 deletions ecc/bls12-377/ecdsa/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

306 changes: 306 additions & 0 deletions ecc/bls12-377/ecdsa/ecdsa.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f7ca09

Please sign in to comment.