Reduced IO messages; removed panics on IO notifications

This commit is contained in:
arkpar
2016-06-27 16:11:10 +02:00
parent 9a16e593e2
commit c006f446a4
5 changed files with 35 additions and 24 deletions

View File

@@ -368,7 +368,7 @@ impl<V> Client<V> where V: Verifier {
invalid: invalid_blocks,
enacted: enacted,
retracted: retracted,
})).unwrap();
})).unwrap_or_else(|e| warn!("Error sending IO notification: {:?}", e));
}
}