Implement library for verifying Merkle proofs.

This commit is contained in:
Michael Sproul
2019-03-06 16:59:36 +11:00
parent af8b8d519c
commit 7bb5e1c151
3 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
[package]
name = "merkle_proof"
version = "0.1.0"
authors = ["Michael Sproul <michael@sigmaprime.io>"]
edition = "2018"
[dependencies]
ethereum-types = "0.5"
hashing = { path = "../hashing" }