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;
|
|
|
|
//! use std::env;
|
2016-06-20 10:28:38 +02:00
|
|
|
//! use ethcore::ethereum;
|
2016-04-21 17:32:53 +02:00
|
|
|
//! use ethcore::client::{Client, ClientConfig};
|
2016-05-31 19:52:53 +02:00
|
|
|
//! use ethcore::miner::{Miner, MinerService};
|
2016-03-09 14:26:28 +01:00
|
|
|
//!
|
|
|
|
//! fn main() {
|
2016-08-05 23:33:55 +02:00
|
|
|
//! let miner: Miner = Miner::with_spec(ðereum::new_frontier());
|
2016-03-09 14:26:28 +01:00
|
|
|
//! // get status
|
2016-03-17 11:19:12 +01:00
|
|
|
//! assert_eq!(miner.status().transactions_in_pending_queue, 0);
|
2016-03-09 14:26:28 +01:00
|
|
|
//!
|
|
|
|
//! // Check block for sealing
|
2016-08-05 23:33:55 +02:00
|
|
|
//! //assert!(miner.sealing_block(&*client).lock().is_some());
|
2016-03-09 14:26:28 +01:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
|
2016-03-08 15:46:44 +01:00
|
|
|
mod miner;
|
2016-04-21 17:32:53 +02:00
|
|
|
mod external;
|
2016-03-08 15:46:44 +01:00
|
|
|
mod transaction_queue;
|
2016-06-29 20:04:52 +02:00
|
|
|
mod work_notify;
|
2016-07-08 17:26:06 +02:00
|
|
|
mod price_info;
|
2016-03-08 15:46:44 +01:00
|
|
|
|
2016-07-01 21:13:56 +02:00
|
|
|
pub use self::transaction_queue::{TransactionQueue, AccountDetails, TransactionOrigin};
|
2016-10-10 23:04:43 +02:00
|
|
|
pub use self::miner::{Miner, MinerOptions, PendingSet, GasPricer, GasPriceCalibratorOptions, GasLimit};
|
2016-05-31 19:52:53 +02:00
|
|
|
pub use self::external::{ExternalMiner, ExternalMinerService};
|
2016-07-01 21:13:56 +02:00
|
|
|
pub use client::TransactionImportResult;
|
2016-03-09 13:28:37 +01:00
|
|
|
|
2016-05-24 21:56:32 +02:00
|
|
|
use std::collections::BTreeMap;
|
2016-04-13 00:04:40 +02:00
|
|
|
use util::{H256, U256, Address, Bytes};
|
2016-06-02 12:28:09 +02:00
|
|
|
use client::{MiningBlockChainClient, Executed, CallAnalytics};
|
2016-05-31 19:52:53 +02:00
|
|
|
use block::ClosedBlock;
|
2016-10-07 12:13:15 +02:00
|
|
|
use header::BlockNumber;
|
2016-08-17 19:25:02 +02:00
|
|
|
use receipt::{RichReceipt, Receipt};
|
2016-08-04 18:17:21 +02:00
|
|
|
use error::{Error, CallError};
|
2016-05-31 19:52:53 +02:00
|
|
|
use transaction::SignedTransaction;
|
2016-03-11 14:48:30 +01:00
|
|
|
|
|
|
|
/// Miner client API
|
|
|
|
pub trait MinerService : Send + Sync {
|
|
|
|
|
|
|
|
/// Returns miner's status.
|
|
|
|
fn status(&self) -> MinerStatus;
|
|
|
|
|
2016-03-22 19:12:17 +01:00
|
|
|
/// Get the author that we will seal blocks as.
|
2016-04-13 00:04:40 +02:00
|
|
|
fn author(&self) -> Address;
|
2016-03-22 19:12:17 +01:00
|
|
|
|
2016-04-13 00:04:40 +02:00
|
|
|
/// Set the author that we will seal blocks as.
|
|
|
|
fn set_author(&self, author: Address);
|
|
|
|
|
|
|
|
/// Get the extra_data that we will seal blocks with.
|
|
|
|
fn extra_data(&self) -> Bytes;
|
|
|
|
|
|
|
|
/// Set the extra_data that we will seal blocks with.
|
|
|
|
fn set_extra_data(&self, extra_data: Bytes);
|
|
|
|
|
|
|
|
/// Get current minimal gas price for transactions accepted to queue.
|
|
|
|
fn minimal_gas_price(&self) -> U256;
|
|
|
|
|
|
|
|
/// Set minimal gas price of transaction to be accepted for mining.
|
|
|
|
fn set_minimal_gas_price(&self, min_gas_price: U256);
|
2016-03-22 19:12:17 +01:00
|
|
|
|
2016-06-23 14:29:16 +02:00
|
|
|
/// Get the lower bound of the gas limit we wish to target when sealing a new block.
|
2016-04-11 21:06:32 +02:00
|
|
|
fn gas_floor_target(&self) -> U256;
|
|
|
|
|
2016-06-23 14:29:16 +02:00
|
|
|
/// Get the upper bound of the gas limit we wish to target when sealing a new block.
|
|
|
|
fn gas_ceil_target(&self) -> U256;
|
|
|
|
|
|
|
|
// TODO: coalesce into single set_range function.
|
|
|
|
/// Set the lower bound of gas limit we wish to target when sealing a new block.
|
2016-04-13 00:04:40 +02:00
|
|
|
fn set_gas_floor_target(&self, target: U256);
|
|
|
|
|
2016-06-23 14:29:16 +02:00
|
|
|
/// Set the upper bound of gas limit we wish to target when sealing a new block.
|
|
|
|
fn set_gas_ceil_target(&self, target: U256);
|
|
|
|
|
2016-04-18 23:03:41 +02:00
|
|
|
/// Get current transactions limit in queue.
|
|
|
|
fn transactions_limit(&self) -> usize;
|
|
|
|
|
|
|
|
/// Set maximal number of transactions kept in the queue (both current and future).
|
|
|
|
fn set_transactions_limit(&self, limit: usize);
|
|
|
|
|
2016-06-27 20:19:01 +02:00
|
|
|
/// Set maximum amount of gas allowed for any single transaction to mine.
|
2016-06-28 10:21:29 +02:00
|
|
|
fn set_tx_gas_limit(&self, limit: U256);
|
2016-06-27 20:19:01 +02:00
|
|
|
|
2016-03-11 14:48:30 +01:00
|
|
|
/// Imports transactions to transaction queue.
|
2016-07-06 17:15:59 +02:00
|
|
|
fn import_external_transactions(&self, chain: &MiningBlockChainClient, transactions: Vec<SignedTransaction>) ->
|
|
|
|
Vec<Result<TransactionImportResult, Error>>;
|
2016-04-17 18:26:15 +02:00
|
|
|
|
|
|
|
/// Imports own (node owner) transaction to queue.
|
2016-07-06 17:15:59 +02:00
|
|
|
fn import_own_transaction(&self, chain: &MiningBlockChainClient, transaction: SignedTransaction) ->
|
|
|
|
Result<TransactionImportResult, Error>;
|
2016-03-11 14:48:30 +01:00
|
|
|
|
2016-03-11 19:27:09 +01:00
|
|
|
/// Returns hashes of transactions currently in pending
|
2016-10-07 12:13:15 +02:00
|
|
|
fn pending_transactions_hashes(&self, best_block: BlockNumber) -> Vec<H256>;
|
2016-03-11 19:27:09 +01:00
|
|
|
|
2016-03-11 14:48:30 +01:00
|
|
|
/// Removes all transactions from the queue and restart mining operation.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn clear_and_reset(&self, chain: &MiningBlockChainClient);
|
2016-03-11 14:48:30 +01:00
|
|
|
|
2016-03-12 10:37:27 +01:00
|
|
|
/// Called when blocks are imported to chain, updates transactions queue.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn chain_new_blocks(&self, chain: &MiningBlockChainClient, imported: &[H256], invalid: &[H256], enacted: &[H256], retracted: &[H256]);
|
2016-03-11 14:48:30 +01:00
|
|
|
|
|
|
|
/// New chain head event. Restart mining operation.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn update_sealing(&self, chain: &MiningBlockChainClient);
|
2016-03-11 14:48:30 +01:00
|
|
|
|
|
|
|
/// Submit `seal` as a valid solution for the header of `pow_hash`.
|
|
|
|
/// Will check the seal, but not actually insert the block into the chain.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn submit_seal(&self, chain: &MiningBlockChainClient, pow_hash: H256, seal: Vec<Bytes>) -> Result<(), Error>;
|
2016-03-24 23:03:22 +01:00
|
|
|
|
|
|
|
/// Get the sealing work package and if `Some`, apply some transform.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn map_sealing_work<F, T>(&self, chain: &MiningBlockChainClient, f: F) -> Option<T>
|
2016-05-25 12:30:55 +02:00
|
|
|
where F: FnOnce(&ClosedBlock) -> T, Self: Sized;
|
2016-03-27 22:16:24 +02:00
|
|
|
|
2016-04-06 23:03:07 +02:00
|
|
|
/// Query pending transactions for hash.
|
2016-10-07 12:13:15 +02:00
|
|
|
fn transaction(&self, best_block: BlockNumber, hash: &H256) -> Option<SignedTransaction>;
|
2016-03-28 18:53:33 +02:00
|
|
|
|
2016-05-24 21:56:32 +02:00
|
|
|
/// Get a list of all transactions.
|
|
|
|
fn all_transactions(&self) -> Vec<SignedTransaction>;
|
|
|
|
|
2016-04-06 23:03:07 +02:00
|
|
|
/// Get a list of all pending transactions.
|
2016-10-07 12:13:15 +02:00
|
|
|
fn pending_transactions(&self, best_block: BlockNumber) -> Vec<SignedTransaction>;
|
2016-04-06 23:03:07 +02:00
|
|
|
|
2016-05-24 21:56:32 +02:00
|
|
|
/// Get a list of all pending receipts.
|
2016-10-07 12:13:15 +02:00
|
|
|
fn pending_receipts(&self, best_block: BlockNumber) -> BTreeMap<H256, Receipt>;
|
2016-05-24 21:56:32 +02:00
|
|
|
|
2016-08-17 19:25:02 +02:00
|
|
|
/// Get a particular reciept.
|
2016-10-07 12:13:15 +02:00
|
|
|
fn pending_receipt(&self, best_block: BlockNumber, hash: &H256) -> Option<RichReceipt>;
|
2016-08-17 19:25:02 +02:00
|
|
|
|
2016-04-06 12:15:20 +02:00
|
|
|
/// Returns highest transaction nonce for given address.
|
|
|
|
fn last_nonce(&self, address: &Address) -> Option<U256>;
|
|
|
|
|
2016-08-02 18:53:32 +02:00
|
|
|
/// Is it currently sealing?
|
|
|
|
fn is_sealing(&self) -> bool;
|
|
|
|
|
2016-04-14 21:01:12 +02:00
|
|
|
/// Suggested gas price.
|
2016-05-31 17:25:25 +02:00
|
|
|
fn sensible_gas_price(&self) -> U256 { 20000000000u64.into() }
|
2016-04-14 21:01:12 +02:00
|
|
|
|
|
|
|
/// Suggested gas limit.
|
2016-05-31 17:25:25 +02:00
|
|
|
fn sensible_gas_limit(&self) -> U256 { 21000.into() }
|
2016-04-28 21:47:44 +02:00
|
|
|
|
2016-05-25 17:35:15 +02:00
|
|
|
/// Latest account balance in pending state.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn balance(&self, chain: &MiningBlockChainClient, address: &Address) -> U256;
|
2016-04-28 21:47:44 +02:00
|
|
|
|
|
|
|
/// Call into contract code using pending state.
|
2016-08-04 18:17:21 +02:00
|
|
|
fn call(&self, chain: &MiningBlockChainClient, t: &SignedTransaction, analytics: CallAnalytics) -> Result<Executed, CallError>;
|
2016-04-28 21:47:44 +02:00
|
|
|
|
|
|
|
/// Get storage value in pending state.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn storage_at(&self, chain: &MiningBlockChainClient, address: &Address, position: &H256) -> H256;
|
2016-04-28 21:47:44 +02:00
|
|
|
|
|
|
|
/// Get account nonce in pending state.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn nonce(&self, chain: &MiningBlockChainClient, address: &Address) -> U256;
|
2016-04-28 21:47:44 +02:00
|
|
|
|
|
|
|
/// Get contract code in pending state.
|
2016-05-31 20:33:26 +02:00
|
|
|
fn code(&self, chain: &MiningBlockChainClient, address: &Address) -> Option<Bytes>;
|
2016-03-11 14:48:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Mining status
|
2016-04-17 18:26:15 +02:00
|
|
|
#[derive(Debug)]
|
2016-03-11 14:48:30 +01:00
|
|
|
pub struct MinerStatus {
|
|
|
|
/// Number of transactions in queue with state `pending` (ready to be included in block)
|
2016-03-17 11:19:12 +01:00
|
|
|
pub transactions_in_pending_queue: usize,
|
2016-03-11 14:48:30 +01:00
|
|
|
/// Number of transactions in queue with state `future` (not yet ready to be included in block)
|
2016-03-17 11:19:12 +01:00
|
|
|
pub transactions_in_future_queue: usize,
|
2016-03-17 11:19:12 +01:00
|
|
|
/// Number of transactions included in currently mined block
|
2016-03-17 11:19:12 +01:00
|
|
|
pub transactions_in_pending_block: usize,
|
2016-03-11 14:48:30 +01:00
|
|
|
}
|