Use is_err instead of match

This commit is contained in:
Vlad Lupashevskyi 2017-12-22 23:14:24 +02:00
parent d6ae6e315e
commit 0d5603eece

View File

@ -699,12 +699,9 @@ impl Miner {
},
Ok(transaction) => {
// This check goes here because verify_transaction takes SignedTransaction parameter
match self.engine.machine().verify_transaction(&transaction, &best_block_header, client.as_block_chain_client()) {
Err(Error::Transaction(TransactionError::NotAllowed)) => {
if self.engine.machine().verify_transaction(&transaction, &best_block_header, client.as_block_chain_client()).is_err() {
debug!(target: "miner", "Rejected disallowed tx {:?}", hash);
return Err(Error::Transaction(TransactionError::NotAllowed));
}
_ => {}
}
let origin = self.accounts.as_ref().and_then(|accounts| {