From 7491815e27dd75f003f9123763783eaf2d667902 Mon Sep 17 00:00:00 2001 From: debris Date: Wed, 10 Feb 2016 11:44:03 +0100 Subject: [PATCH] fixed ethsync tests --- sync/src/tests/helpers.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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!(); }