removed try_seal from MinerClient interface (#1262)

This commit is contained in:
Marek Kotewicz
2016-06-13 09:51:14 -07:00
committed by Gav Wood
parent a8831fe896
commit 4ef4819bf9
5 changed files with 4 additions and 17 deletions

View File

@@ -140,5 +140,4 @@ fn can_mine() {
let b = client.prepare_open_block(Address::default(), 31415926.into(), vec![]).close();
assert_eq!(*b.block().header().parent_hash(), BlockView::new(&dummy_blocks[0]).header_view().sha3());
assert!(client.try_seal(b.lock(), vec![]).is_ok());
}