Fixed a few authoring issues (#315)

This commit is contained in:
Arkadiy Paronyan
2018-07-14 22:27:25 +02:00
committed by Gav Wood
parent 16ff3579ef
commit 161dce3699
6 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -198,7 +198,7 @@ impl<P: LocalPolkadotApi + Send + Sync + 'static> Future for MessageProcessTask<
return Ok(async);
},
Ok(Async::Ready(None)) => return Ok(Async::Ready(())),
Ok(Async::NotReady) => (),
Ok(Async::NotReady) => return Ok(Async::NotReady),
Err(e) => debug!(target: "p_net", "Error getting consensus message: {:?}", e),
}
}