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/>.
|
|
|
|
|
|
|
|
#![warn(missing_docs)]
|
2016-03-10 15:20:54 +01:00
|
|
|
#![cfg_attr(all(nightly, feature="dev"), feature(plugin))]
|
|
|
|
#![cfg_attr(all(nightly, feature="dev"), plugin(clippy))]
|
2016-03-08 15:46:44 +01:00
|
|
|
|
2016-03-09 14:26:28 +01:00
|
|
|
//! Miner module
|
|
|
|
//! Keeps track of transactions and mined block.
|
|
|
|
//!
|
|
|
|
//! Usage example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! extern crate ethcore_util as util;
|
|
|
|
//! extern crate ethcore;
|
|
|
|
//! extern crate ethminer;
|
2016-03-09 15:27:07 +01:00
|
|
|
//! use std::ops::Deref;
|
2016-03-09 14:26:28 +01:00
|
|
|
//! use std::env;
|
|
|
|
//! use std::sync::Arc;
|
|
|
|
//! use util::network::{NetworkService, NetworkConfiguration};
|
2016-03-09 15:27:07 +01:00
|
|
|
//! use ethcore::client::{Client, ClientConfig, BlockChainClient};
|
2016-03-09 14:26:28 +01:00
|
|
|
//! use ethcore::ethereum;
|
|
|
|
//! use ethminer::{Miner, MinerService};
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
2016-03-09 15:27:07 +01:00
|
|
|
//! let mut service = NetworkService::start(NetworkConfiguration::new()).unwrap();
|
2016-03-09 14:26:28 +01:00
|
|
|
//! let dir = env::temp_dir();
|
|
|
|
//! let client = Client::new(ClientConfig::default(), ethereum::new_frontier(), &dir, service.io().channel()).unwrap();
|
|
|
|
//!
|
|
|
|
//! let miner: Miner = Miner::default();
|
|
|
|
//! // get status
|
|
|
|
//! assert_eq!(miner.status().transaction_queue_pending, 0);
|
|
|
|
//!
|
|
|
|
//! // Check block for sealing
|
2016-03-09 15:27:07 +01:00
|
|
|
//! miner.prepare_sealing(client.deref());
|
|
|
|
//! assert!(miner.sealing_block(client.deref()).lock().unwrap().is_some());
|
2016-03-09 14:26:28 +01:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
|
2016-03-08 15:46:44 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate ethcore_util as util;
|
|
|
|
extern crate ethcore;
|
|
|
|
extern crate env_logger;
|
|
|
|
extern crate rayon;
|
|
|
|
|
|
|
|
mod miner;
|
|
|
|
mod transaction_queue;
|
|
|
|
|
2016-03-11 11:40:12 +01:00
|
|
|
pub use transaction_queue::TransactionQueue;
|
2016-03-09 13:28:37 +01:00
|
|
|
pub use miner::{Miner, MinerService};
|
|
|
|
|