Create the fork-choice crate.

- Adds the naive fork choice (longest chain) rule.
- Adds basic documentation for the crate.
This commit is contained in:
Age Manning
2019-02-05 15:55:29 +11:00
parent da1498fc45
commit 8109fad7bf
7 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
[package]
name = "fork_choice"
version = "0.1.0"
authors = ["Age Manning <Age@AgeManning.com>"]
edition = "2018"
[dependencies]
db = { path = "../../beacon_node/db" }
ssz = { path = "../utils/ssz" }
types = { path = "../types" }