Reorder transaction_by_hash to favour canon search (#2332)

* Reorder transaction_by_hash to favour canon search

* Fix build.

* Slightly cleaner function.

* Fix test.
This commit is contained in:
Gav Wood
2016-09-27 12:17:02 +02:00
committed by GitHub
parent bc4cbaac2b
commit 3fb3f1f54e
2 changed files with 4 additions and 8 deletions

View File

@@ -383,11 +383,11 @@ impl BlockChainClient for TestBlockChainClient {
}
fn transaction(&self, _id: TransactionID) -> Option<LocalizedTransaction> {
unimplemented!();
None // Simple default.
}
fn uncle(&self, _id: UncleID) -> Option<Bytes> {
unimplemented!();
None // Simple default.
}
fn transaction_receipt(&self, id: TransactionID) -> Option<LocalizedReceipt> {