temporary is_sealer check disable

This commit is contained in:
keorn 2016-09-19 10:39:57 +02:00
parent b144bd2b84
commit b31e732ebe

View File

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