Integrating TransactionQueue with client

This commit is contained in:
Tomasz Drwięga
2016-03-01 22:30:23 +01:00
parent 725e894f9b
commit 7565625ce0
6 changed files with 120 additions and 14 deletions

View File

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