2016-03-08 15:46:44 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
use rayon::prelude::*;
|
2016-03-24 23:03:22 +01:00
|
|
|
//use std::sync::{Mutex, RwLock, Arc};
|
|
|
|
//use std::sync::atomic;
|
2016-03-11 14:48:30 +01:00
|
|
|
use std::sync::atomic::AtomicBool;
|
2016-03-24 23:03:22 +01:00
|
|
|
//use std::collections::HashSet;
|
2016-03-11 14:48:30 +01:00
|
|
|
|
2016-03-24 23:03:22 +01:00
|
|
|
use util::*;//{H256, U256, Address, Bytes, Uint, UsingQueue, HashMap};
|
2016-03-17 15:20:33 +01:00
|
|
|
use ethcore::views::{BlockView, HeaderView};
|
2016-03-09 13:28:37 +01:00
|
|
|
use ethcore::client::{BlockChainClient, BlockId};
|
2016-03-17 11:19:12 +01:00
|
|
|
use ethcore::block::{ClosedBlock, IsBlock};
|
2016-03-24 23:03:22 +01:00
|
|
|
use ethcore::error::*;//{Error};
|
2016-03-08 15:46:44 +01:00
|
|
|
use ethcore::transaction::SignedTransaction;
|
2016-03-16 10:40:33 +01:00
|
|
|
use super::{MinerService, MinerStatus, TransactionQueue, AccountDetails};
|
2016-03-08 15:46:44 +01:00
|
|
|
|
2016-03-09 14:26:28 +01:00
|
|
|
/// Keeps track of transactions using priority queue and holds currently mined block.
|
2016-03-08 15:46:44 +01:00
|
|
|
pub struct Miner {
|
|
|
|
transaction_queue: Mutex<TransactionQueue>,
|
|
|
|
|
|
|
|
// for sealing...
|
|
|
|
sealing_enabled: AtomicBool,
|
2016-03-18 13:59:11 +01:00
|
|
|
sealing_block_last_request: Mutex<u64>,
|
2016-03-24 23:03:22 +01:00
|
|
|
sealing_work: Mutex<UsingQueue<ClosedBlock>>,
|
2016-03-14 02:00:22 +01:00
|
|
|
gas_floor_target: RwLock<U256>,
|
2016-03-08 15:46:44 +01:00
|
|
|
author: RwLock<Address>,
|
|
|
|
extra_data: RwLock<Bytes>,
|
|
|
|
}
|
|
|
|
|
2016-03-09 14:26:28 +01:00
|
|
|
impl Default for Miner {
|
|
|
|
fn default() -> Miner {
|
2016-03-08 15:46:44 +01:00
|
|
|
Miner {
|
|
|
|
transaction_queue: Mutex::new(TransactionQueue::new()),
|
|
|
|
sealing_enabled: AtomicBool::new(false),
|
2016-03-18 13:59:11 +01:00
|
|
|
sealing_block_last_request: Mutex::new(0),
|
2016-03-24 23:03:22 +01:00
|
|
|
sealing_work: Mutex::new(UsingQueue::new(5)),
|
2016-03-14 02:00:22 +01:00
|
|
|
gas_floor_target: RwLock::new(U256::zero()),
|
2016-03-11 14:48:30 +01:00
|
|
|
author: RwLock::new(Address::default()),
|
2016-03-08 15:46:44 +01:00
|
|
|
extra_data: RwLock::new(Vec::new()),
|
|
|
|
}
|
|
|
|
}
|
2016-03-09 14:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Miner {
|
|
|
|
/// Creates new instance of miner
|
|
|
|
pub fn new() -> Arc<Miner> {
|
|
|
|
Arc::new(Miner::default())
|
|
|
|
}
|
2016-03-08 15:46:44 +01:00
|
|
|
|
2016-03-09 13:28:37 +01:00
|
|
|
/// Get the author that we will seal blocks as.
|
|
|
|
fn author(&self) -> Address {
|
|
|
|
*self.author.read().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the extra_data that we will seal blocks wuth.
|
|
|
|
fn extra_data(&self) -> Bytes {
|
|
|
|
self.extra_data.read().unwrap().clone()
|
|
|
|
}
|
2016-03-09 15:22:06 +01:00
|
|
|
|
2016-03-14 02:00:22 +01:00
|
|
|
/// Get the extra_data that we will seal blocks wuth.
|
|
|
|
fn gas_floor_target(&self) -> U256 {
|
2016-03-16 10:40:33 +01:00
|
|
|
*self.gas_floor_target.read().unwrap()
|
2016-03-14 02:00:22 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 15:22:06 +01:00
|
|
|
/// Set the author that we will seal blocks as.
|
|
|
|
pub fn set_author(&self, author: Address) {
|
|
|
|
*self.author.write().unwrap() = author;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the extra_data that we will seal blocks with.
|
|
|
|
pub fn set_extra_data(&self, extra_data: Bytes) {
|
|
|
|
*self.extra_data.write().unwrap() = extra_data;
|
|
|
|
}
|
|
|
|
|
2016-03-14 02:00:22 +01:00
|
|
|
/// Set the gas limit we wish to target when sealing a new block.
|
|
|
|
pub fn set_gas_floor_target(&self, target: U256) {
|
|
|
|
*self.gas_floor_target.write().unwrap() = target;
|
|
|
|
}
|
|
|
|
|
2016-03-09 15:22:06 +01:00
|
|
|
/// Set minimal gas price of transaction to be accepted for mining.
|
|
|
|
pub fn set_minimal_gas_price(&self, min_gas_price: U256) {
|
|
|
|
self.transaction_queue.lock().unwrap().set_minimal_gas_price(min_gas_price);
|
|
|
|
}
|
2016-03-17 12:47:31 +01:00
|
|
|
|
|
|
|
/// Prepares new block for sealing including top transactions from queue.
|
2016-03-18 19:36:32 +01:00
|
|
|
fn prepare_sealing(&self, chain: &BlockChainClient) {
|
2016-03-18 09:48:35 +01:00
|
|
|
let transactions = self.transaction_queue.lock().unwrap().top_transactions();
|
2016-03-24 23:03:22 +01:00
|
|
|
let mut sealing_work = self.sealing_work.lock().unwrap();
|
|
|
|
let best_hash = chain.best_block_header().sha3();
|
2016-03-23 17:28:02 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
// check to see if last ClosedBlock in would_seals is actually same parent block.
|
|
|
|
// if so
|
|
|
|
// duplicate, re-open and push any new transactions.
|
|
|
|
// if at least one was pushed successfully, close and enqueue new ClosedBlock;
|
|
|
|
// otherwise, leave everything alone.
|
|
|
|
// otherwise, author a fresh block.
|
|
|
|
*/
|
2016-03-18 09:48:35 +01:00
|
|
|
|
2016-03-24 23:03:22 +01:00
|
|
|
let (b, invalid_transactions) = match sealing_work.pop_if(|b| b.block().fields().header.parent_hash() == &best_hash) {
|
|
|
|
Some(old_block) => {
|
2016-03-23 17:28:02 +01:00
|
|
|
// add transactions to old_block
|
2016-03-24 23:03:22 +01:00
|
|
|
let e = chain.engine();
|
|
|
|
let mut invalid_transactions = HashSet::new();
|
|
|
|
let mut block = old_block.reopen(e);
|
|
|
|
let block_number = block.block().fields().header.number();
|
|
|
|
|
|
|
|
// TODO: push new uncles, too.
|
|
|
|
let mut have_one = false;
|
|
|
|
// TODO: refactor with chain.prepare_sealing
|
|
|
|
for tx in transactions {
|
|
|
|
let hash = tx.hash();
|
|
|
|
let res = block.push_transaction(tx, None);
|
|
|
|
match res {
|
|
|
|
Err(Error::Execution(ExecutionError::BlockGasLimitReached { gas_limit, gas_used, .. })) => {
|
|
|
|
trace!(target: "miner", "Skipping adding transaction to block because of gas limit: {:?}", hash);
|
|
|
|
// Exit early if gas left is smaller then min_tx_gas
|
|
|
|
let min_tx_gas: U256 = x!(21000); // TODO: figure this out properly.
|
|
|
|
if gas_limit - gas_used < min_tx_gas {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(Error::Transaction(TransactionError::AlreadyImported)) => {} // already have transaction - ignore
|
|
|
|
Err(e) => {
|
|
|
|
invalid_transactions.insert(hash);
|
|
|
|
trace!(target: "miner",
|
|
|
|
"Error adding transaction to block: number={}. transaction_hash={:?}, Error: {:?}",
|
|
|
|
block_number, hash, e);
|
|
|
|
},
|
|
|
|
_ => { have_one = true } // imported ok - note that.
|
2016-03-23 17:28:02 +01:00
|
|
|
}
|
2016-03-24 23:03:22 +01:00
|
|
|
}
|
|
|
|
(if have_one { Some(block.close()) } else { None }, invalid_transactions)
|
2016-03-23 17:28:02 +01:00
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// block not found - create it.
|
|
|
|
chain.prepare_sealing(
|
|
|
|
self.author(),
|
|
|
|
self.gas_floor_target(),
|
|
|
|
self.extra_data(),
|
|
|
|
transactions,
|
|
|
|
)
|
|
|
|
}
|
2016-03-24 23:03:22 +01:00
|
|
|
};
|
2016-03-23 17:28:02 +01:00
|
|
|
let mut queue = self.transaction_queue.lock().unwrap();
|
|
|
|
queue.remove_all(
|
|
|
|
&invalid_transactions.into_iter().collect::<Vec<H256>>(),
|
|
|
|
|a: &Address| AccountDetails {
|
|
|
|
nonce: chain.nonce(a),
|
|
|
|
balance: chain.balance(a),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if let Some(block) = b {
|
|
|
|
self.sealing_work.lock().unwrap().push(block);
|
2016-03-22 13:05:18 +01:00
|
|
|
}
|
2016-03-18 19:36:32 +01:00
|
|
|
}
|
|
|
|
|
2016-03-17 15:20:33 +01:00
|
|
|
fn update_gas_limit(&self, chain: &BlockChainClient) {
|
|
|
|
let gas_limit = HeaderView::new(&chain.best_block_header()).gas_limit();
|
|
|
|
let mut queue = self.transaction_queue.lock().unwrap();
|
|
|
|
queue.set_gas_limit(gas_limit);
|
2016-03-17 12:47:31 +01:00
|
|
|
}
|
2016-03-09 13:28:37 +01:00
|
|
|
}
|
|
|
|
|
2016-03-18 13:59:11 +01:00
|
|
|
const SEALING_TIMEOUT_IN_BLOCKS : u64 = 5;
|
|
|
|
|
2016-03-09 13:28:37 +01:00
|
|
|
impl MinerService for Miner {
|
|
|
|
|
2016-03-09 14:26:28 +01:00
|
|
|
fn clear_and_reset(&self, chain: &BlockChainClient) {
|
|
|
|
self.transaction_queue.lock().unwrap().clear();
|
2016-03-17 12:47:31 +01:00
|
|
|
self.update_sealing(chain);
|
2016-03-09 14:26:28 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 13:28:37 +01:00
|
|
|
fn status(&self) -> MinerStatus {
|
2016-03-08 16:23:32 +01:00
|
|
|
let status = self.transaction_queue.lock().unwrap().status();
|
2016-03-22 13:05:18 +01:00
|
|
|
let sealing_work = self.sealing_work.lock().unwrap();
|
2016-03-08 16:23:32 +01:00
|
|
|
MinerStatus {
|
2016-03-17 11:19:12 +01:00
|
|
|
transactions_in_pending_queue: status.pending,
|
|
|
|
transactions_in_future_queue: status.future,
|
2016-03-24 23:03:22 +01:00
|
|
|
transactions_in_pending_block: sealing_work.peek_last_ref().map_or(0, |b| b.transactions().len()),
|
2016-03-08 16:23:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:12:17 +01:00
|
|
|
fn author(&self) -> Address {
|
|
|
|
*self.author.read().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extra_data(&self) -> Bytes {
|
|
|
|
self.extra_data.read().unwrap().clone()
|
|
|
|
}
|
|
|
|
|
2016-03-17 15:49:29 +01:00
|
|
|
fn import_transactions<T>(&self, transactions: Vec<SignedTransaction>, fetch_account: T) -> Vec<Result<(), Error>>
|
2016-03-16 10:40:33 +01:00
|
|
|
where T: Fn(&Address) -> AccountDetails {
|
2016-03-08 15:46:44 +01:00
|
|
|
let mut transaction_queue = self.transaction_queue.lock().unwrap();
|
2016-03-16 10:40:33 +01:00
|
|
|
transaction_queue.add_all(transactions, fetch_account)
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-10 16:00:55 +01:00
|
|
|
fn pending_transactions_hashes(&self) -> Vec<H256> {
|
|
|
|
let transaction_queue = self.transaction_queue.lock().unwrap();
|
|
|
|
transaction_queue.pending_hashes()
|
|
|
|
}
|
|
|
|
|
2016-03-17 12:47:31 +01:00
|
|
|
fn update_sealing(&self, chain: &BlockChainClient) {
|
2016-03-24 14:51:51 +01:00
|
|
|
if self.sealing_enabled.load(atomic::Ordering::Relaxed) {
|
2016-03-18 13:59:11 +01:00
|
|
|
let current_no = chain.chain_info().best_block_number;
|
2016-03-24 14:56:22 +01:00
|
|
|
let last_request = *self.sealing_block_last_request.lock().unwrap();
|
|
|
|
let should_disable_sealing = current_no > last_request && current_no - last_request > SEALING_TIMEOUT_IN_BLOCKS;
|
2016-03-24 14:51:51 +01:00
|
|
|
|
|
|
|
if should_disable_sealing {
|
|
|
|
trace!(target: "miner", "Miner sleeping (current {}, last {})", current_no, last_request);
|
|
|
|
self.sealing_enabled.store(false, atomic::Ordering::Relaxed);
|
2016-03-24 23:10:54 +01:00
|
|
|
self.sealing_work.lock().unwrap().reset();
|
|
|
|
} else if self.sealing_enabled.load(atomic::Ordering::Relaxed) {
|
2016-03-24 14:51:51 +01:00
|
|
|
self.prepare_sealing(chain);
|
|
|
|
}
|
2016-03-17 12:47:31 +01:00
|
|
|
}
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-22 13:05:18 +01:00
|
|
|
fn map_sealing_work<F, T>(&self, chain: &BlockChainClient, f: F) -> Option<T> where F: FnOnce(&ClosedBlock) -> T {
|
2016-03-23 17:28:02 +01:00
|
|
|
let have_work = self.sealing_work.lock().unwrap().peek_last_ref().is_none();
|
2016-03-22 13:05:18 +01:00
|
|
|
if !have_work {
|
2016-03-08 15:46:44 +01:00
|
|
|
self.sealing_enabled.store(true, atomic::Ordering::Relaxed);
|
|
|
|
self.prepare_sealing(chain);
|
|
|
|
}
|
2016-03-24 14:56:22 +01:00
|
|
|
let mut sealing_block_last_request = self.sealing_block_last_request.lock().unwrap();
|
2016-03-24 14:51:51 +01:00
|
|
|
let best_number = chain.chain_info().best_block_number;
|
|
|
|
if *sealing_block_last_request != best_number {
|
2016-03-24 14:56:22 +01:00
|
|
|
trace!(target: "miner", "Miner received request (was {}, now {}) - waking up.", *sealing_block_last_request, best_number);
|
2016-03-24 14:51:51 +01:00
|
|
|
*sealing_block_last_request = best_number;
|
|
|
|
}
|
2016-03-23 17:28:02 +01:00
|
|
|
self.sealing_work.lock().unwrap().use_last_ref().map(f)
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 13:28:37 +01:00
|
|
|
fn submit_seal(&self, chain: &BlockChainClient, pow_hash: H256, seal: Vec<Bytes>) -> Result<(), Error> {
|
2016-03-24 23:03:22 +01:00
|
|
|
if let Some(b) = self.sealing_work.lock().unwrap().take_used_if(|b| &b.hash() == &pow_hash) {
|
|
|
|
match chain.try_seal(b, seal) {
|
|
|
|
Err(_) => {
|
2016-03-22 13:05:18 +01:00
|
|
|
Err(Error::PowInvalid)
|
|
|
|
}
|
|
|
|
Ok(sealed) => {
|
|
|
|
// TODO: commit DB from `sealed.drain` and make a VerifiedBlock to skip running the transactions twice.
|
|
|
|
try!(chain.import_block(sealed.rlp_bytes()));
|
|
|
|
Ok(())
|
|
|
|
}
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
2016-03-22 13:05:18 +01:00
|
|
|
} else {
|
|
|
|
Err(Error::PowHashInvalid)
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-13 15:36:03 +01:00
|
|
|
fn chain_new_blocks(&self, chain: &BlockChainClient, imported: &[H256], invalid: &[H256], enacted: &[H256], retracted: &[H256]) {
|
2016-03-08 15:46:44 +01:00
|
|
|
fn fetch_transactions(chain: &BlockChainClient, hash: &H256) -> Vec<SignedTransaction> {
|
|
|
|
let block = chain
|
2016-03-10 14:06:47 +01:00
|
|
|
.block(BlockId::Hash(*hash))
|
2016-03-08 15:46:44 +01:00
|
|
|
// Client should send message after commit to db and inserting to chain.
|
|
|
|
.expect("Expected in-chain blocks.");
|
|
|
|
let block = BlockView::new(&block);
|
|
|
|
block.transactions()
|
|
|
|
}
|
2016-03-17 15:20:33 +01:00
|
|
|
|
|
|
|
// First update gas limit in transaction queue
|
|
|
|
self.update_gas_limit(chain);
|
|
|
|
|
|
|
|
// Then import all transactions...
|
2016-03-08 15:46:44 +01:00
|
|
|
{
|
2016-03-13 15:29:55 +01:00
|
|
|
let out_of_chain = retracted
|
|
|
|
.par_iter()
|
2016-03-13 15:36:03 +01:00
|
|
|
.map(|h| fetch_transactions(chain, h));
|
2016-03-13 15:29:55 +01:00
|
|
|
out_of_chain.for_each(|txs| {
|
2016-03-08 15:46:44 +01:00
|
|
|
// populate sender
|
|
|
|
for tx in &txs {
|
|
|
|
let _sender = tx.sender();
|
|
|
|
}
|
|
|
|
let mut transaction_queue = self.transaction_queue.lock().unwrap();
|
2016-03-16 10:40:33 +01:00
|
|
|
let _ = transaction_queue.add_all(txs, |a| AccountDetails {
|
|
|
|
nonce: chain.nonce(a),
|
|
|
|
balance: chain.balance(a)
|
|
|
|
});
|
2016-03-08 15:46:44 +01:00
|
|
|
});
|
|
|
|
}
|
2016-03-17 15:20:33 +01:00
|
|
|
|
|
|
|
// ...and after that remove old ones
|
2016-03-15 23:01:36 +01:00
|
|
|
{
|
|
|
|
let in_chain = {
|
|
|
|
let mut in_chain = HashSet::new();
|
|
|
|
in_chain.extend(imported);
|
|
|
|
in_chain.extend(enacted);
|
|
|
|
in_chain.extend(invalid);
|
|
|
|
in_chain
|
|
|
|
.into_iter()
|
|
|
|
.collect::<Vec<H256>>()
|
|
|
|
};
|
|
|
|
|
|
|
|
let in_chain = in_chain
|
|
|
|
.par_iter()
|
|
|
|
.map(|h: &H256| fetch_transactions(chain, h));
|
|
|
|
|
|
|
|
in_chain.for_each(|txs| {
|
|
|
|
let hashes = txs.iter().map(|tx| tx.hash()).collect::<Vec<H256>>();
|
|
|
|
let mut transaction_queue = self.transaction_queue.lock().unwrap();
|
2016-03-16 10:40:33 +01:00
|
|
|
transaction_queue.remove_all(&hashes, |a| AccountDetails {
|
|
|
|
nonce: chain.nonce(a),
|
|
|
|
balance: chain.balance(a)
|
|
|
|
});
|
2016-03-08 15:46:44 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-17 12:47:31 +01:00
|
|
|
self.update_sealing(chain);
|
2016-03-08 15:46:44 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-18 13:59:11 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
use MinerService;
|
|
|
|
use super::{Miner};
|
2016-03-25 16:41:01 +01:00
|
|
|
use util::*;
|
2016-03-18 13:59:11 +01:00
|
|
|
use ethcore::client::{TestBlockChainClient, EachBlockWith};
|
2016-03-25 16:41:01 +01:00
|
|
|
use ethcore::block::*;
|
2016-03-18 13:59:11 +01:00
|
|
|
|
2016-03-25 16:41:01 +01:00
|
|
|
// TODO [ToDr] To uncomment when TestBlockChainClient can actually return a ClosedBlock.
|
2016-03-18 13:59:11 +01:00
|
|
|
#[ignore]
|
|
|
|
#[test]
|
|
|
|
fn should_prepare_block_to_seal() {
|
|
|
|
// given
|
|
|
|
let client = TestBlockChainClient::default();
|
|
|
|
let miner = Miner::default();
|
|
|
|
|
|
|
|
// when
|
2016-03-25 16:41:01 +01:00
|
|
|
let sealing_work = miner.map_sealing_work(&client, |_| ());
|
|
|
|
assert!(sealing_work.is_some(), "Expected closed block");
|
2016-03-18 13:59:11 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 16:41:01 +01:00
|
|
|
#[ignore]
|
2016-03-18 13:59:11 +01:00
|
|
|
#[test]
|
2016-03-25 16:41:01 +01:00
|
|
|
fn should_still_work_after_a_couple_of_blocks() {
|
2016-03-18 13:59:11 +01:00
|
|
|
// given
|
|
|
|
let client = TestBlockChainClient::default();
|
|
|
|
let miner = Miner::default();
|
|
|
|
|
2016-03-25 16:41:01 +01:00
|
|
|
let res = miner.map_sealing_work(&client, |b| b.block().fields().header.hash());
|
|
|
|
assert!(res.is_some());
|
|
|
|
assert!(miner.submit_seal(&client, res.unwrap(), vec![]).is_ok());
|
|
|
|
|
|
|
|
// two more blocks mined, work requested.
|
|
|
|
client.add_blocks(1, EachBlockWith::Uncle);
|
|
|
|
miner.map_sealing_work(&client, |b| b.block().fields().header.hash());
|
|
|
|
|
|
|
|
client.add_blocks(1, EachBlockWith::Uncle);
|
|
|
|
miner.map_sealing_work(&client, |b| b.block().fields().header.hash());
|
2016-03-18 13:59:11 +01:00
|
|
|
|
2016-03-25 16:41:01 +01:00
|
|
|
// solution to original work submitted.
|
|
|
|
assert!(miner.submit_seal(&client, res.unwrap(), vec![]).is_ok());
|
2016-03-18 13:59:11 +01:00
|
|
|
}
|
|
|
|
}
|