Remove some stray print statements

This commit is contained in:
Paul Hauner 2018-09-25 23:40:01 +10:00
parent eedfa8c8ea
commit 362b7b2513
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C
2 changed files with 0 additions and 4 deletions

View File

@ -91,7 +91,6 @@ fn test_block_validation() {
let mut attestations = vec![];
let mut keypairs = vec![];
for shard in 0..shard_count {
println!("hello");
let mut attesters = vec![];
let mut attester_bitfield = Bitfield::new();
let mut aggregate_sig = AggregateSignature::new();
@ -178,8 +177,6 @@ fn test_block_validation() {
let serialized_block = stream.drain();
let ssz_block = SszBlock::from_slice(&serialized_block[..]).unwrap();
println!("this happened");
let status = validate_ssz_block(
&ssz_block,
present_slot,

View File

@ -17,5 +17,4 @@ pub mod validator_record;
use super::bls;
use super::db;
use super::Logger;
use super::utils;