rpc eth_getFilterChanges returns new blocks, implemented eth_uninstallFilter

This commit is contained in:
debris
2016-02-24 14:16:05 +01:00
parent 932b31227f
commit 0318907fb3
3 changed files with 30 additions and 3 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!();
}