From b31e732ebe85bed34003eee5b52a9083312e843d Mon Sep 17 00:00:00 2001 From: keorn Date: Mon, 19 Sep 2016 10:39:57 +0200 Subject: [PATCH] temporary is_sealer check disable --- ethcore/src/engines/authority_round.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ethcore/src/engines/authority_round.rs b/ethcore/src/engines/authority_round.rs index e40f8fbf7..2984ef263 100644 --- a/ethcore/src/engines/authority_round.rs +++ b/ethcore/src/engines/authority_round.rs @@ -161,7 +161,8 @@ impl Engine for AuthorityRound { fn is_sealer(&self, author: &Address) -> Option { 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.