diff --git a/src/state/transition/new_active_state.rs b/src/state/transition/new_active_state.rs index eb24e7e571..bb0e79cb38 100644 --- a/src/state/transition/new_active_state.rs +++ b/src/state/transition/new_active_state.rs @@ -43,6 +43,7 @@ pub fn compute_new_active_state( &parent_block_rlp.to_vec(), &block.attestation_aggregate_sig); + // TODO: bls verify signature here. let (partial_crosslinks, ffg_voter_bitfield, total_new_voters) = diff --git a/tests/aggregate_vote.rs b/tests/aggregate_vote.rs deleted file mode 100644 index 31e1bb209f..0000000000 --- a/tests/aggregate_vote.rs +++ /dev/null @@ -1,7 +0,0 @@ -#[cfg(test)] -mod tests { - #[test] - fn it_works() { - assert_eq!(2 + 2, 4); - } -}