Tratifying Miner

This commit is contained in:
Tomasz Drwięga
2016-03-09 13:28:37 +01:00
parent 5db84c3233
commit 9d664336b5
6 changed files with 65 additions and 41 deletions

View File

@@ -311,11 +311,11 @@ impl BlockChainClient for TestBlockChainClient {
}
}
fn prepare_sealing(&self, author: Address, extra_data: Bytes, transactions: Vec<SignedTransaction>) -> Option<ClosedBlock> {
fn prepare_sealing(&self, _author: Address, _extra_data: Bytes, _transactions: Vec<SignedTransaction>) -> Option<ClosedBlock> {
unimplemented!()
}
fn try_seal(&self, block: ClosedBlock, seal: Vec<Bytes>) -> Result<SealedBlock, ClosedBlock> {
fn try_seal(&self, _block: ClosedBlock, _seal: Vec<Bytes>) -> Result<SealedBlock, ClosedBlock> {
unimplemented!()
}
}