Merge pull request #504 from ethcore/rpc_poll_ids

support for rpc polling
This commit is contained in:
Gav Wood
2016-03-03 12:44:27 +01:00
11 changed files with 296 additions and 9 deletions

View File

@@ -105,6 +105,10 @@ impl BlockChainClient for TestBlockChainClient {
Some(U256::zero())
}
fn block_hash(&self, id: BlockId) -> Option<H256> {
unimplemented!();
}
fn code(&self, _address: &Address) -> Option<Bytes> {
unimplemented!();
}