temporary is_sealer check disable

This commit is contained in:
keorn 2016-09-19 10:39:57 +02:00
parent b144bd2b84
commit b31e732ebe
1 changed files with 2 additions and 1 deletions

View File

@ -161,7 +161,8 @@ impl Engine for AuthorityRound {
fn is_sealer(&self, author: &Address) -> Option<bool> {
let ref p = self.our_params;
Some(p.our_params.authorities.contains(author))
Some(p.authorities.contains(author));
Some(true)
}
/// Attempt to seal the block internally.