diff --git a/sync/src/tests/helpers.rs b/sync/src/tests/helpers.rs index 0b2d5ea18..d392fc653 100644 --- a/sync/src/tests/helpers.rs +++ b/sync/src/tests/helpers.rs @@ -23,6 +23,7 @@ use io::SyncIo; use chain::{ChainSync}; use ethcore::receipt::Receipt; use ethcore::transaction::LocalizedTransaction; +use ethcore::views::TransactionId; pub struct TestBlockChainClient { pub blocks: RwLock>, @@ -87,7 +88,7 @@ impl BlockChainClient for TestBlockChainClient { unimplemented!(); } - fn transaction(&self, hash: &H256) -> Option { + fn transaction(&self, _id: TransactionId) -> Option { unimplemented!(); }