Enum ethcore::engines::EngineError
[−]
[src]
pub enum EngineError { NotAuthorized(Address), DoubleVote(Address), NotProposer(Mismatch<Address>), UnexpectedMessage, BadSealFieldSize(OutOfBounds<usize>), }
Voting errors.
Variants
NotAuthorized(Address)
Signature does not belong to an authority.
DoubleVote(Address)
The same author issued different votes at the same step.
NotProposer(Mismatch<Address>)
The received block is from an incorrect proposer.
UnexpectedMessage
Message was not expected.
BadSealFieldSize(OutOfBounds<usize>)
Seal field has an unexpected size.