Minor modification to merkle hashing
This commit is contained in:
parent
96b5c8453e
commit
73ba4d3cfc
@ -30,8 +30,9 @@ pub fn merkle_hash(list: &mut Vec<Vec<u8>>) -> Vec<u8> {
|
|||||||
// Hash two chuncks together
|
// Hash two chuncks together
|
||||||
new_chunkz.append(&mut hash(two_chunks));
|
new_chunkz.append(&mut hash(two_chunks));
|
||||||
}
|
}
|
||||||
chunk_size = HASHSIZE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chunk_size = HASHSIZE;
|
||||||
chunkz = new_chunkz;
|
chunkz = new_chunkz;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user