Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 381 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 381 Bytes

Merkle Treat

A pluggable Merkle tree implementation in Scala. By default, it's backed by a Scala mutable Map, but if you choose to do so you can extend the DataStore trait in your own code, and store the tree in the data store technology you like.

This merkle tree is a port of George Danezis's Hippie Hug into Scala.