Add attestations to beacon chain harness

This commit is contained in:
Paul Hauner 2019-06-16 15:55:59 -04:00
parent 1638a7aa62
commit f6c86d0f7f
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C
2 changed files with 73 additions and 5 deletions

View File

@ -5,7 +5,7 @@ mod fork_choice;
pub mod iter; pub mod iter;
mod metrics; mod metrics;
mod persisted_beacon_chain; mod persisted_beacon_chain;
mod test_utils; pub mod test_utils;
pub use self::beacon_chain::{BeaconChain, BeaconChainTypes, BlockProcessingOutcome}; pub use self::beacon_chain::{BeaconChain, BeaconChainTypes, BlockProcessingOutcome};
pub use self::checkpoint::CheckPoint; pub use self::checkpoint::CheckPoint;

View File

@ -1,5 +1,5 @@
use crate::{BeaconChain, BeaconChainTypes, BlockProcessingOutcome}; use crate::{BeaconChain, BeaconChainTypes, BlockProcessingOutcome};
use lmd_ghost::{LmdGhost, ThreadSafeReducedTree}; use lmd_ghost::LmdGhost;
use slot_clock::SlotClock; use slot_clock::SlotClock;
use slot_clock::TestingSlotClock; use slot_clock::TestingSlotClock;
use std::marker::PhantomData; use std::marker::PhantomData;
@ -7,8 +7,9 @@ use std::sync::Arc;
use store::MemoryStore; use store::MemoryStore;
use tree_hash::{SignedRoot, TreeHash}; use tree_hash::{SignedRoot, TreeHash};
use types::{ use types::{
test_utils::TestingBeaconStateBuilder, BeaconBlock, ChainSpec, Domain, EthSpec, Hash256, test_utils::TestingBeaconStateBuilder, AggregateSignature, Attestation,
Keypair, MinimalEthSpec, Signature, AttestationDataAndCustodyBit, BeaconBlock, Bitfield, ChainSpec, Domain, EthSpec, Hash256,
Keypair, SecretKey, Signature,
}; };
pub struct CommonTypes<L, E> pub struct CommonTypes<L, E>
@ -91,6 +92,8 @@ where
.process_block(block) .process_block(block)
.expect("should process block"); .expect("should process block");
assert_eq!(outcome, BlockProcessingOutcome::Processed); assert_eq!(outcome, BlockProcessingOutcome::Processed);
self.add_attestations_to_op_pool();
} }
fn build_block(&self) -> BeaconBlock { fn build_block(&self) -> BeaconBlock {
@ -127,16 +130,81 @@ where
block block
} }
fn add_attestations_to_op_pool(&self) {
let state = &self.chain.current_state();
let spec = &self.spec;
let fork = &state.fork;
state
.get_crosslink_committees_at_slot(state.slot)
.expect("should get committees")
.iter()
.for_each(|cc| {
let committee_size = cc.committee.len();
for (i, validator_index) in cc.committee.iter().enumerate() {
let data = self
.chain
.produce_attestation_data(cc.shard)
.expect("should produce attestation data");
let mut aggregation_bitfield = Bitfield::new();
aggregation_bitfield.set(i, true);
aggregation_bitfield.set(committee_size, false);
let mut custody_bitfield = Bitfield::new();
custody_bitfield.set(committee_size, false);
let signature = {
let message = AttestationDataAndCustodyBit {
data: data.clone(),
custody_bit: false,
}
.tree_hash_root();
let domain = spec.get_domain(data.target_epoch, Domain::Attestation, fork);
let mut agg_sig = AggregateSignature::new();
agg_sig.add(&Signature::new(
&message,
domain,
self.get_sk(*validator_index),
));
agg_sig
};
let attestation = Attestation {
aggregation_bitfield,
data,
custody_bitfield,
signature,
};
self.chain
.process_attestation(attestation)
.expect("should process attestation");
}
});
}
fn get_sk(&self, validator_index: usize) -> &SecretKey {
&self.keypairs[validator_index].sk
}
} }
#[cfg(test)] #[cfg(test)]
#[cfg(not(debug_assertions))]
mod test { mod test {
use super::*; use super::*;
use lmd_ghost::ThreadSafeReducedTree;
use types::MinimalEthSpec;
pub const VALIDATOR_COUNT: usize = 16; pub const VALIDATOR_COUNT: usize = 16;
#[test] #[test]
fn build_on_genesis() { fn build_two_epochs_on_genesis() {
let harness: BeaconChainHarness< let harness: BeaconChainHarness<
ThreadSafeReducedTree<MemoryStore, MinimalEthSpec>, ThreadSafeReducedTree<MemoryStore, MinimalEthSpec>,
MinimalEthSpec, MinimalEthSpec,