removed debug prints

This commit is contained in:
Svyatoslav Nikolsky 2016-11-21 18:43:30 +03:00
parent 3de7afbb37
commit d230f9f8ee
1 changed files with 0 additions and 4 deletions

View File

@ -911,9 +911,7 @@ impl<T> SynchronizationClientCore<T> where T: TaskExecutor {
/// Process new peer transaction /// Process new peer transaction
fn process_peer_transaction(&mut self, transaction: Transaction) -> Option<VecDeque<(H256, Transaction)>> { fn process_peer_transaction(&mut self, transaction: Transaction) -> Option<VecDeque<(H256, Transaction)>> {
// if we are in synchronization state, we will ignore this message // if we are in synchronization state, we will ignore this message
println!("=== AAA");
if self.state.is_synchronizing() { if self.state.is_synchronizing() {
println!("=== BBB");
return None; return None;
} }
@ -927,7 +925,6 @@ println!("=== BBB");
.map(|input| input.previous_output.hash.clone()) .map(|input| input.previous_output.hash.clone())
.collect(); .collect();
if !unknown_parents.is_empty() { if !unknown_parents.is_empty() {
println!("=== CCC");
self.orphaned_transactions_pool.insert(hash, transaction, unknown_parents); self.orphaned_transactions_pool.insert(hash, transaction, unknown_parents);
return None; return None;
} }
@ -940,7 +937,6 @@ println!("=== CCC");
for &(ref h, ref tx) in &transactons { for &(ref h, ref tx) in &transactons {
chain.verify_transaction(h.clone(), tx.clone()); chain.verify_transaction(h.clone(), tx.clone());
} }
println!("=== DDD: {:?}", transactons);
Some(transactons) Some(transactons)
} }