Reduced IO messages; removed panics on IO notifications (#1457)

This commit is contained in:
Arkadiy Paronyan
2016-06-27 19:30:13 +02:00
committed by Gav Wood
parent 1fdbfa14ad
commit 60b70dada1
5 changed files with 35 additions and 24 deletions

View File

@@ -359,7 +359,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));
}
}