diff --git a/ethcore/src/client/client.rs b/ethcore/src/client/client.rs index 1148a0140..8abf3a526 100644 --- a/ethcore/src/client/client.rs +++ b/ethcore/src/client/client.rs @@ -466,8 +466,8 @@ impl BlockChainClient for Client where V: Verifier { } } - fn state_data(&self, _hash: &H256) -> Option { - None + fn state_data(&self, hash: &H256) -> Option { + self.state_db.lock().unwrap().state(hash) } fn block_receipts(&self, _hash: &H256) -> Option {