117a207d49
This adds block and attestation validation code that was written previously. There were many non-validation specific changes made whilst building these functions (e.g., db, hashing, etc) -- these changes have already been merged into master and this branch has been created just to make it easy to review this code.
14 lines
348 B
TOML
14 lines
348 B
TOML
[package]
|
|
name = "validation"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
|
|
[dependencies]
|
|
bls = { path = "../utils/bls" }
|
|
db = { path = "../../lighthouse/db" }
|
|
hashing = { path = "../utils/hashing" }
|
|
rayon = "1.0.2"
|
|
ssz = { path = "../utils/ssz" }
|
|
ssz_helpers = { path = "../utils/ssz_helpers" }
|
|
types = { path = "../types" }
|