From eee6be1ce33741184ade7a0a6a40a0ecbf7889b3 Mon Sep 17 00:00:00 2001 From: keorn Date: Tue, 13 Sep 2016 14:23:52 +0200 Subject: [PATCH] implement new predicate trait --- ethcore/src/engines/authority_round.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ethcore/src/engines/authority_round.rs b/ethcore/src/engines/authority_round.rs index 787baccbf..5ae383bbe 100644 --- a/ethcore/src/engines/authority_round.rs +++ b/ethcore/src/engines/authority_round.rs @@ -159,6 +159,7 @@ impl Engine for AuthorityRound { /// This assumes that all uncles are valid uncles (i.e. of at least one generation before the current). fn on_close_block(&self, _block: &mut ExecutedBlock) {} + fn seals_internally(&self) -> bool { true } /// Attempt to seal the block internally. /// /// This operation is synchronous and may (quite reasonably) not be available, in which `false` will