Merge branch 'master' into gav

This commit is contained in:
Gav Wood
2016-01-18 16:20:35 +01:00
21 changed files with 380 additions and 145 deletions

View File

@@ -146,6 +146,10 @@ impl Engine for Ethash {
}
Ok(())
}
fn verify_transaction(&self, t: &Transaction, _header: &Header) -> Result<(), Error> {
t.sender().map(|_|()) // Perform EC recovery and cache sender
}
}
impl Ethash {