Init merkle-mountain-range

The MMR code is copy from https://github.com/nervosnetwork/ckb/pull/1598
This commit is contained in:
jjy
2019-09-19 16:23:58 +08:00
commit c1211d2ca9
17 changed files with 1065 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
default: ci
ci: fmt clippy test bench-test
test:
cargo test --all --all-features
bench-test:
cargo bench -- --test
clippy:
cargo clippy --all --all-features --all-targets
fmt:
cargo fmt --all -- --check