Merge branch 'master' into reorgjdb

Conflicts:
	parity/main.rs
This commit is contained in:
Nikolay Volf
2016-03-11 17:41:04 +04:00
46 changed files with 435 additions and 218 deletions

View File

@@ -121,7 +121,7 @@ struct QueueSignal {
}
impl QueueSignal {
#[cfg_attr(all(nightly, feature="dev"), allow(bool_comparison))]
#[cfg_attr(feature="dev", allow(bool_comparison))]
fn set(&self) {
if self.signalled.compare_and_swap(false, true, AtomicOrdering::Relaxed) == false {
self.message_channel.send(UserMessage(SyncMessage::BlockVerified)).expect("Error sending BlockVerified message");