Rename to Merkle Proof

This commit is contained in:
alrevuelta 2024-01-16 13:13:47 +01:00
parent ad40ef83a1
commit ee5a1d9314
No known key found for this signature in database
GPG Key ID: F345C9F3CCDB886E

View File

@ -245,7 +245,7 @@ func (r *RLN) GetLeaf(index uint) ([]byte, error) {
return C.GoBytes(unsafe.Pointer(out.ptr), C.int(out.len)), nil
}
func (r *RLN) GetProof(index uint) ([]byte, error) {
func (r *RLN) GetMerkleProof(index uint) ([]byte, error) {
var output []byte
out := toBuffer(output)