mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 12:31:23 +00:00
18 lines
383 B
Rust
18 lines
383 B
Rust
use std::collections::HashMap;
|
|
use super::block;
|
|
use super::bls;
|
|
use super::Logger;
|
|
use super::db;
|
|
use super::attestation_record;
|
|
use super::ssz;
|
|
use super::transition::attestation_parent_hashes;
|
|
use super::utils;
|
|
|
|
mod attestation;
|
|
mod ssz_block;
|
|
|
|
type Slot = u64;
|
|
type ShardId = u64;
|
|
type AttesterMap = HashMap<(Slot, ShardId), Vec<usize>>;
|
|
type ProposerMap = HashMap<Slot, usize>;
|