Merge pull request #364 from ethcore/remove_sync_print_debug

Remove debug print from sync
This commit is contained in:
Svyatoslav Nikolsky 2017-01-10 11:51:26 +03:00 committed by GitHub
commit d60820ca57
1 changed files with 0 additions and 1 deletions

View File

@ -816,7 +816,6 @@ impl<T> SynchronizationClientCore<T> where T: TaskExecutor {
// check that we do not know all blocks in range [first_unknown_index..]
// if we know some block => there has been verification error => all headers should be ignored
// see when_previous_block_verification_failed_fork_is_not_requested for details
println!("=== {:?}", self.chain.block_state(&header.hash));
match self.chain.block_state(&header.hash) {
BlockState::Unknown => (),
BlockState::DeadEnd if self.config.close_connection_on_bad_block => {