Add disclaimer comment

This commit is contained in:
Miguel Mota 2022-05-24 09:59:06 -07:00
parent a917fa12c4
commit 893ce99a4a
No known key found for this signature in database
GPG Key ID: 67EC1161588A00F9
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -115,3 +115,4 @@ dist
##################### #####################
package-lock.json package-lock.json
merkletree.js merkletree.js
notes.txt

View File

@ -4,6 +4,7 @@ import Base from './Base'
import treeify from 'treeify' import treeify from 'treeify'
// TODO: Clean up and DRY up code // TODO: Clean up and DRY up code
// Disclaimer: The multiproof code is unaudited and may possibly contain serious issues. It's in a hacky state as is and it's begging for a rewrite!
type TValue = Buffer | string | number | null | undefined type TValue = Buffer | string | number | null | undefined
type THashFnResult = Buffer | string type THashFnResult = Buffer | string