32 lines
520 B
Rust
32 lines
520 B
Rust
use std::sync::Arc;
|
|
|
|
use super::helpers::{
|
|
TestStore,
|
|
};
|
|
use super::state::attestation_record::{
|
|
AttestationRecord,
|
|
AttestationValidationContext,
|
|
AttestationValidationError,
|
|
};
|
|
use super::state::block::validation::AttesterMap;
|
|
use super::bls::{
|
|
AggregateSignature,
|
|
Keypair,
|
|
};
|
|
use super::db::{
|
|
MemoryDB,
|
|
};
|
|
use super::db::stores::{
|
|
BlockStore,
|
|
ValidatorStore,
|
|
};
|
|
use super::utils::types::{
|
|
Hash256,
|
|
Bitfield,
|
|
};
|
|
|
|
#[test]
|
|
fn test_attestation_validation_valid() {
|
|
// TODO
|
|
}
|