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.
13 lines
224 B
Rust
13 lines
224 B
Rust
mod helpers;
|
|
mod tests;
|
|
|
|
use super::bls;
|
|
use super::db;
|
|
use super::hashing;
|
|
use super::ssz;
|
|
use super::ssz_helpers;
|
|
use super::types;
|
|
use super::validation;
|
|
|
|
use super::attestation_validation::helpers::generate_attestation;
|