2016-09-10 11:37:14 +02: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/>.
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod usage;
|
|
|
|
|
|
|
|
usage! {
|
|
|
|
{
|
|
|
|
// Commands
|
|
|
|
cmd_daemon: bool,
|
|
|
|
cmd_wallet: bool,
|
|
|
|
cmd_account: bool,
|
|
|
|
cmd_new: bool,
|
|
|
|
cmd_list: bool,
|
|
|
|
cmd_export: bool,
|
|
|
|
cmd_import: bool,
|
|
|
|
cmd_signer: bool,
|
|
|
|
cmd_new_token: bool,
|
|
|
|
cmd_snapshot: bool,
|
|
|
|
cmd_restore: bool,
|
|
|
|
cmd_ui: bool,
|
2016-09-23 15:28:09 +02:00
|
|
|
cmd_tools: bool,
|
|
|
|
cmd_hash: bool,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// Arguments
|
|
|
|
arg_pid_file: String,
|
|
|
|
arg_file: Option<String>,
|
|
|
|
arg_path: Vec<String>,
|
|
|
|
|
|
|
|
// Flags
|
|
|
|
// -- Legacy Options
|
|
|
|
flag_geth: bool,
|
|
|
|
flag_testnet: bool,
|
|
|
|
flag_import_geth_keys: bool,
|
|
|
|
flag_datadir: Option<String>,
|
2016-11-03 22:22:25 +01:00
|
|
|
flag_networkid: Option<usize>,
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_peers: Option<u16>,
|
|
|
|
flag_nodekey: Option<String>,
|
|
|
|
flag_nodiscover: bool,
|
|
|
|
flag_jsonrpc: bool,
|
|
|
|
flag_jsonrpc_off: bool,
|
|
|
|
flag_webapp: bool,
|
|
|
|
flag_dapps_off: bool,
|
|
|
|
flag_rpc: bool,
|
|
|
|
flag_rpcaddr: Option<String>,
|
|
|
|
flag_rpcport: Option<u16>,
|
|
|
|
flag_rpcapi: Option<String>,
|
|
|
|
flag_rpccorsdomain: Option<String>,
|
|
|
|
flag_ipcdisable: bool,
|
|
|
|
flag_ipc_off: bool,
|
|
|
|
flag_ipcapi: Option<String>,
|
|
|
|
flag_ipcpath: Option<String>,
|
|
|
|
flag_gasprice: Option<String>,
|
|
|
|
flag_etherbase: Option<String>,
|
|
|
|
flag_extradata: Option<String>,
|
|
|
|
flag_cache: Option<u32>,
|
|
|
|
|
|
|
|
// -- Miscellaneous Options
|
|
|
|
flag_version: bool,
|
2016-09-12 08:42:22 +02:00
|
|
|
flag_no_config: bool,
|
2016-09-10 11:37:14 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// -- Operating Options
|
2016-11-05 10:38:00 +01:00
|
|
|
flag_mode: String = "last", or |c: &Config| otry!(c.parity).mode.clone(),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_mode_timeout: u64 = 300u64, or |c: &Config| otry!(c.parity).mode_timeout.clone(),
|
|
|
|
flag_mode_alarm: u64 = 3600u64, or |c: &Config| otry!(c.parity).mode_alarm.clone(),
|
|
|
|
flag_chain: String = "homestead", or |c: &Config| otry!(c.parity).chain.clone(),
|
|
|
|
flag_db_path: String = "$HOME/.parity", or |c: &Config| otry!(c.parity).db_path.clone(),
|
|
|
|
flag_keys_path: String = "$HOME/.parity/keys", or |c: &Config| otry!(c.parity).keys_path.clone(),
|
|
|
|
flag_identity: String = "", or |c: &Config| otry!(c.parity).identity.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Account Options
|
|
|
|
flag_unlock: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.account).unlock.clone().map(|vec| Some(vec.join(","))),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_password: Vec<String> = Vec::new(),
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.account).password.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_keys_iterations: u32 = 10240u32,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.account).keys_iterations.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
2016-11-07 17:40:53 +01:00
|
|
|
flag_force_ui: bool = false,
|
|
|
|
or |c: &Config| otry!(c.ui).force.clone(),
|
|
|
|
flag_no_ui: bool = false,
|
|
|
|
or |c: &Config| otry!(c.ui).disable.clone(),
|
|
|
|
flag_ui_port: u16 = 8180u16,
|
|
|
|
or |c: &Config| otry!(c.ui).port.clone(),
|
|
|
|
flag_ui_interface: String = "local",
|
|
|
|
or |c: &Config| otry!(c.ui).interface.clone(),
|
|
|
|
flag_ui_path: String = "$HOME/.parity/signer",
|
|
|
|
or |c: &Config| otry!(c.ui).path.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
// NOTE [todr] For security reasons don't put this to config files
|
2016-11-07 17:40:53 +01:00
|
|
|
flag_ui_no_validation: bool = false, or |_| None,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Networking Options
|
2016-10-18 18:16:00 +02:00
|
|
|
flag_warp: bool = false,
|
|
|
|
or |c: &Config| otry!(c.network).warp.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_port: u16 = 30303u16,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).port.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_min_peers: u16 = 25u16,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).min_peers.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_max_peers: u16 = 50u16,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).max_peers.clone(),
|
2016-10-24 18:25:27 +02:00
|
|
|
flag_max_pending_peers: u16 = 64u16,
|
|
|
|
or |c: &Config| otry!(c.network).max_pending_peers.clone(),
|
|
|
|
flag_snapshot_peers: u16 = 0u16,
|
|
|
|
or |c: &Config| otry!(c.network).snapshot_peers.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_nat: String = "any",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).nat.clone(),
|
2016-10-24 18:25:27 +02:00
|
|
|
flag_allow_ips: String = "all",
|
|
|
|
or |c: &Config| otry!(c.network).allow_ips.clone(),
|
2016-11-03 22:22:25 +01:00
|
|
|
flag_network_id: Option<usize> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).id.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_bootnodes: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).bootnodes.clone().map(|vec| Some(vec.join(","))),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_no_discovery: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).discovery.map(|d| !d).clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_node_key: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).node_key.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_reserved_peers: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).reserved_peers.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_reserved_only: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.network).reserved_only.clone(),
|
2016-11-22 18:03:35 +01:00
|
|
|
flag_no_ancient_blocks: bool = false, or |_| None,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- API and Console Options
|
|
|
|
// RPC
|
|
|
|
flag_no_jsonrpc: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).disable.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_jsonrpc_port: u16 = 8545u16,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).port.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_jsonrpc_interface: String = "local",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).interface.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_jsonrpc_cors: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).cors.clone().map(Some),
|
2016-11-06 12:51:53 +01:00
|
|
|
flag_jsonrpc_apis: String = "web3,eth,net,parity,traces,rpc",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).apis.clone().map(|vec| vec.join(",")),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_jsonrpc_hosts: String = "none",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.rpc).hosts.clone().map(|vec| vec.join(",")),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// IPC
|
|
|
|
flag_no_ipc: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.ipc).disable.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_ipc_path: String = "$HOME/.parity/jsonrpc.ipc",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.ipc).path.clone(),
|
2016-11-06 12:51:53 +01:00
|
|
|
flag_ipc_apis: String = "web3,eth,net,parity,parity_accounts,traces,rpc",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.ipc).apis.clone().map(|vec| vec.join(",")),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// DAPPS
|
|
|
|
flag_no_dapps: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).disable.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_port: u16 = 8080u16,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).port.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_interface: String = "local",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).interface.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_hosts: String = "none",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).hosts.clone().map(|vec| vec.join(",")),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_path: String = "$HOME/.parity/dapps",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).path.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_user: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).user.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_dapps_pass: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.dapps).pass.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Sealing/Mining Options
|
|
|
|
flag_author: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).author.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_force_sealing: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).force_sealing.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_reseal_on_txs: String = "own",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).reseal_on_txs.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_reseal_min_period: u64 = 2000u64,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).reseal_min_period.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_work_queue_size: usize = 20usize,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).work_queue_size.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_tx_gas_limit: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).tx_gas_limit.clone().map(Some),
|
2016-10-27 19:28:34 +02:00
|
|
|
flag_tx_time_limit: Option<u64> = None,
|
|
|
|
or |c: &Config| otry!(c.mining).tx_time_limit.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_relay_set: String = "cheap",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).relay_set.clone(),
|
2016-11-25 15:12:57 +01:00
|
|
|
flag_usd_per_tx: String = "0.0025",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).usd_per_tx.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_usd_per_eth: String = "auto",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).usd_per_eth.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_price_update_period: String = "hourly",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).price_update_period.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_gas_floor_target: String = "4700000",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).gas_floor_target.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_gas_cap: String = "6283184",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).gas_cap.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_extra_data: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).extra_data.clone().map(Some),
|
2016-10-15 14:46:33 +02:00
|
|
|
flag_tx_queue_size: usize = 1024usize,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).tx_queue_size.clone(),
|
2016-10-10 23:04:43 +02:00
|
|
|
flag_tx_queue_gas: String = "auto",
|
|
|
|
or |c: &Config| otry!(c.mining).tx_queue_gas.clone(),
|
2016-10-27 19:27:08 +02:00
|
|
|
flag_tx_queue_strategy: String = "gas_price",
|
2016-10-15 14:46:33 +02:00
|
|
|
or |c: &Config| otry!(c.mining).tx_queue_strategy.clone(),
|
2016-10-27 19:28:34 +02:00
|
|
|
flag_tx_queue_ban_count: u16 = 1u16,
|
|
|
|
or |c: &Config| otry!(c.mining).tx_queue_ban_count.clone(),
|
|
|
|
flag_tx_queue_ban_time: u16 = 180u16,
|
|
|
|
or |c: &Config| otry!(c.mining).tx_queue_ban_time.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_remove_solved: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).remove_solved.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_notify_work: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.mining).notify_work.clone().map(|vec| Some(vec.join(","))),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Footprint Options
|
|
|
|
flag_tracing: String = "auto",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).tracing.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_pruning: String = "auto",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).pruning.clone(),
|
2016-10-14 14:44:56 +02:00
|
|
|
flag_pruning_history: u64 = 64u64,
|
|
|
|
or |c: &Config| otry!(c.footprint).pruning_history.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_cache_size_db: u32 = 64u32,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).cache_size_db.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_cache_size_blocks: u32 = 8u32,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).cache_size_blocks.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_cache_size_queue: u32 = 50u32,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).cache_size_queue.clone(),
|
2016-10-07 00:28:42 +02:00
|
|
|
flag_cache_size_state: u32 = 25u32,
|
|
|
|
or |c: &Config| otry!(c.footprint).cache_size_state.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_cache_size: Option<u32> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).cache_size.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_fast_and_loose: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).fast_and_loose.clone(),
|
2016-10-21 23:21:57 +02:00
|
|
|
flag_db_compaction: String = "auto",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).db_compaction.clone(),
|
2016-10-03 11:13:10 +02:00
|
|
|
flag_fat_db: String = "auto",
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.footprint).fat_db.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Import/Export Options
|
|
|
|
flag_from: String = "1", or |_| None,
|
|
|
|
flag_to: String = "latest", or |_| None,
|
|
|
|
flag_format: Option<String> = None, or |_| None,
|
2016-10-24 15:09:13 +02:00
|
|
|
flag_no_seal_check: bool = false, or |_| None,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Snapshot Optons
|
|
|
|
flag_at: String = "latest", or |_| None,
|
|
|
|
flag_no_periodic_snapshot: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.snapshots).disable_periodic.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Virtual Machine Options
|
|
|
|
flag_jitvm: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.vm).jit.clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Miscellaneous Options
|
|
|
|
flag_config: String = "$HOME/.parity/config.toml", or |_| None,
|
|
|
|
flag_logging: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.misc).logging.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_log_file: Option<String> = None,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.misc).log_file.clone().map(Some),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_no_color: bool = false,
|
2016-09-11 11:52:12 +02:00
|
|
|
or |c: &Config| otry!(c.misc).color.map(|c| !c).clone(),
|
2016-09-10 11:37:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Config {
|
2016-09-11 11:52:12 +02:00
|
|
|
parity: Option<Operating>,
|
|
|
|
account: Option<Account>,
|
2016-11-07 17:40:53 +01:00
|
|
|
ui: Option<Ui>,
|
2016-09-11 11:52:12 +02:00
|
|
|
network: Option<Network>,
|
|
|
|
rpc: Option<Rpc>,
|
|
|
|
ipc: Option<Ipc>,
|
|
|
|
dapps: Option<Dapps>,
|
|
|
|
mining: Option<Mining>,
|
|
|
|
footprint: Option<Footprint>,
|
|
|
|
snapshots: Option<Snapshots>,
|
|
|
|
vm: Option<VM>,
|
|
|
|
misc: Option<Misc>,
|
2016-09-10 11:37:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Operating {
|
|
|
|
mode: Option<String>,
|
|
|
|
mode_timeout: Option<u64>,
|
|
|
|
mode_alarm: Option<u64>,
|
|
|
|
chain: Option<String>,
|
|
|
|
db_path: Option<String>,
|
|
|
|
keys_path: Option<String>,
|
|
|
|
identity: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Account {
|
|
|
|
unlock: Option<Vec<String>>,
|
|
|
|
password: Option<Vec<String>>,
|
|
|
|
keys_iterations: Option<u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
2016-11-07 17:40:53 +01:00
|
|
|
struct Ui {
|
2016-09-10 11:37:14 +02:00
|
|
|
force: Option<bool>,
|
|
|
|
disable: Option<bool>,
|
|
|
|
port: Option<u16>,
|
|
|
|
interface: Option<String>,
|
|
|
|
path: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Network {
|
|
|
|
disable: Option<bool>,
|
2016-10-18 18:16:00 +02:00
|
|
|
warp: Option<bool>,
|
2016-09-10 11:37:14 +02:00
|
|
|
port: Option<u16>,
|
|
|
|
min_peers: Option<u16>,
|
|
|
|
max_peers: Option<u16>,
|
2016-10-24 18:25:27 +02:00
|
|
|
snapshot_peers: Option<u16>,
|
|
|
|
max_pending_peers: Option<u16>,
|
2016-09-10 11:37:14 +02:00
|
|
|
nat: Option<String>,
|
2016-10-24 18:25:27 +02:00
|
|
|
allow_ips: Option<String>,
|
2016-11-03 22:22:25 +01:00
|
|
|
id: Option<usize>,
|
2016-09-10 11:37:14 +02:00
|
|
|
bootnodes: Option<Vec<String>>,
|
|
|
|
discovery: Option<bool>,
|
|
|
|
node_key: Option<String>,
|
|
|
|
reserved_peers: Option<String>,
|
|
|
|
reserved_only: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Rpc {
|
|
|
|
disable: Option<bool>,
|
|
|
|
port: Option<u16>,
|
|
|
|
interface: Option<String>,
|
|
|
|
cors: Option<String>,
|
|
|
|
apis: Option<Vec<String>>,
|
|
|
|
hosts: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Ipc {
|
|
|
|
disable: Option<bool>,
|
|
|
|
path: Option<String>,
|
|
|
|
apis: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Dapps {
|
|
|
|
disable: Option<bool>,
|
|
|
|
port: Option<u16>,
|
|
|
|
interface: Option<String>,
|
|
|
|
hosts: Option<Vec<String>>,
|
|
|
|
path: Option<String>,
|
|
|
|
user: Option<String>,
|
|
|
|
pass: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Mining {
|
|
|
|
author: Option<String>,
|
|
|
|
force_sealing: Option<bool>,
|
|
|
|
reseal_on_txs: Option<String>,
|
|
|
|
reseal_min_period: Option<u64>,
|
|
|
|
work_queue_size: Option<usize>,
|
|
|
|
tx_gas_limit: Option<String>,
|
2016-10-27 19:28:34 +02:00
|
|
|
tx_time_limit: Option<u64>,
|
2016-09-10 11:37:14 +02:00
|
|
|
relay_set: Option<String>,
|
|
|
|
usd_per_tx: Option<String>,
|
|
|
|
usd_per_eth: Option<String>,
|
|
|
|
price_update_period: Option<String>,
|
|
|
|
gas_floor_target: Option<String>,
|
|
|
|
gas_cap: Option<String>,
|
|
|
|
extra_data: Option<String>,
|
|
|
|
tx_queue_size: Option<usize>,
|
2016-10-10 23:04:43 +02:00
|
|
|
tx_queue_gas: Option<String>,
|
2016-10-15 14:46:33 +02:00
|
|
|
tx_queue_strategy: Option<String>,
|
2016-10-27 19:28:34 +02:00
|
|
|
tx_queue_ban_count: Option<u16>,
|
|
|
|
tx_queue_ban_time: Option<u16>,
|
2016-09-10 11:37:14 +02:00
|
|
|
remove_solved: Option<bool>,
|
|
|
|
notify_work: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Footprint {
|
|
|
|
tracing: Option<String>,
|
|
|
|
pruning: Option<String>,
|
2016-10-14 14:44:56 +02:00
|
|
|
pruning_history: Option<u64>,
|
2016-09-10 11:37:14 +02:00
|
|
|
fast_and_loose: Option<bool>,
|
|
|
|
cache_size: Option<u32>,
|
|
|
|
cache_size_db: Option<u32>,
|
|
|
|
cache_size_blocks: Option<u32>,
|
|
|
|
cache_size_queue: Option<u32>,
|
2016-10-07 00:28:42 +02:00
|
|
|
cache_size_state: Option<u32>,
|
2016-09-10 11:37:14 +02:00
|
|
|
db_compaction: Option<String>,
|
2016-10-03 11:13:10 +02:00
|
|
|
fat_db: Option<String>,
|
2016-09-10 11:37:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Snapshots {
|
|
|
|
disable_periodic: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct VM {
|
|
|
|
jit: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, PartialEq, RustcDecodable)]
|
|
|
|
struct Misc {
|
|
|
|
logging: Option<String>,
|
|
|
|
log_file: Option<String>,
|
2016-09-11 11:52:12 +02:00
|
|
|
color: Option<bool>,
|
2016-09-10 11:37:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::{
|
2016-09-11 11:52:12 +02:00
|
|
|
Args, ArgsError,
|
2016-11-07 17:40:53 +01:00
|
|
|
Config, Operating, Account, Ui, Network, Rpc, Ipc, Dapps, Mining, Footprint, Snapshots, VM, Misc
|
2016-09-10 11:37:14 +02:00
|
|
|
};
|
|
|
|
use toml;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_parse_args_and_include_config() {
|
|
|
|
// given
|
|
|
|
let mut config = Config::default();
|
|
|
|
let mut operating = Operating::default();
|
|
|
|
operating.chain = Some("morden".into());
|
2016-09-11 11:52:12 +02:00
|
|
|
config.parity = Some(operating);
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// when
|
|
|
|
let args = Args::parse_with_config(&["parity"], config).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(args.flag_chain, "morden".to_owned());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_not_use_config_if_cli_is_provided() {
|
|
|
|
// given
|
|
|
|
let mut config = Config::default();
|
|
|
|
let mut operating = Operating::default();
|
|
|
|
operating.chain = Some("morden".into());
|
2016-09-11 11:52:12 +02:00
|
|
|
config.parity = Some(operating);
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// when
|
|
|
|
let args = Args::parse_with_config(&["parity", "--chain", "xyz"], config).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(args.flag_chain, "xyz".to_owned());
|
|
|
|
}
|
|
|
|
|
2016-10-27 16:56:18 +02:00
|
|
|
#[test]
|
|
|
|
fn should_use_config_if_cli_is_missing() {
|
|
|
|
let mut config = Config::default();
|
|
|
|
let mut footprint = Footprint::default();
|
|
|
|
footprint.pruning_history = Some(128);
|
|
|
|
config.footprint = Some(footprint);
|
|
|
|
|
|
|
|
// when
|
|
|
|
let args = Args::parse_with_config(&["parity"], config).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(args.flag_pruning_history, 128);
|
|
|
|
}
|
|
|
|
|
2016-09-10 11:37:14 +02:00
|
|
|
#[test]
|
|
|
|
fn should_parse_full_config() {
|
|
|
|
// given
|
|
|
|
let config = toml::decode_str(include_str!("./config.full.toml")).unwrap();
|
|
|
|
|
|
|
|
// when
|
|
|
|
let args = Args::parse_with_config(&["parity", "--chain", "xyz"], config).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(args, Args {
|
|
|
|
// Commands
|
|
|
|
cmd_daemon: false,
|
|
|
|
cmd_wallet: false,
|
|
|
|
cmd_account: false,
|
|
|
|
cmd_new: false,
|
|
|
|
cmd_list: false,
|
|
|
|
cmd_export: false,
|
|
|
|
cmd_import: false,
|
|
|
|
cmd_signer: false,
|
|
|
|
cmd_new_token: false,
|
|
|
|
cmd_snapshot: false,
|
|
|
|
cmd_restore: false,
|
|
|
|
cmd_ui: false,
|
2016-09-23 15:28:09 +02:00
|
|
|
cmd_tools: false,
|
|
|
|
cmd_hash: false,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// Arguments
|
|
|
|
arg_pid_file: "".into(),
|
|
|
|
arg_file: None,
|
|
|
|
arg_path: vec![],
|
|
|
|
|
|
|
|
// -- Operating Options
|
2016-11-05 10:38:00 +01:00
|
|
|
flag_mode: "last".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_mode_timeout: 300u64,
|
|
|
|
flag_mode_alarm: 3600u64,
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_chain: "xyz".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_db_path: "$HOME/.parity".into(),
|
|
|
|
flag_keys_path: "$HOME/.parity/keys".into(),
|
|
|
|
flag_identity: "".into(),
|
|
|
|
|
|
|
|
// -- Account Options
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_unlock: Some("0xdeadbeefcafe0000000000000000000000000000".into()),
|
|
|
|
flag_password: vec!["~/.safe/password.file".into()],
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_keys_iterations: 10240u32,
|
|
|
|
|
2016-11-07 17:40:53 +01:00
|
|
|
flag_force_ui: false,
|
|
|
|
flag_no_ui: false,
|
|
|
|
flag_ui_port: 8180u16,
|
|
|
|
flag_ui_interface: "127.0.0.1".into(),
|
|
|
|
flag_ui_path: "$HOME/.parity/signer".into(),
|
|
|
|
flag_ui_no_validation: false,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Networking Options
|
2016-10-18 18:16:00 +02:00
|
|
|
flag_warp: true,
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_port: 30303u16,
|
|
|
|
flag_min_peers: 25u16,
|
|
|
|
flag_max_peers: 50u16,
|
2016-10-24 18:25:27 +02:00
|
|
|
flag_max_pending_peers: 64u16,
|
|
|
|
flag_snapshot_peers: 0u16,
|
|
|
|
flag_allow_ips: "all".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_nat: "any".into(),
|
2016-11-03 22:22:25 +01:00
|
|
|
flag_network_id: Some(1),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_bootnodes: Some("".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_no_discovery: false,
|
|
|
|
flag_node_key: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_reserved_peers: Some("./path_to_file".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_reserved_only: false,
|
2016-11-22 18:03:35 +01:00
|
|
|
flag_no_ancient_blocks: false,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- API and Console Options
|
|
|
|
// RPC
|
|
|
|
flag_no_jsonrpc: false,
|
|
|
|
flag_jsonrpc_port: 8545u16,
|
|
|
|
flag_jsonrpc_interface: "local".into(),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_jsonrpc_cors: Some("null".into()),
|
2016-11-06 12:51:53 +01:00
|
|
|
flag_jsonrpc_apis: "web3,eth,net,parity,traces,rpc".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_jsonrpc_hosts: "none".into(),
|
|
|
|
|
|
|
|
// IPC
|
|
|
|
flag_no_ipc: false,
|
|
|
|
flag_ipc_path: "$HOME/.parity/jsonrpc.ipc".into(),
|
2016-11-06 12:51:53 +01:00
|
|
|
flag_ipc_apis: "web3,eth,net,parity,parity_accounts,personal,traces,rpc".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// DAPPS
|
|
|
|
flag_no_dapps: false,
|
|
|
|
flag_dapps_port: 8080u16,
|
|
|
|
flag_dapps_interface: "local".into(),
|
|
|
|
flag_dapps_hosts: "none".into(),
|
|
|
|
flag_dapps_path: "$HOME/.parity/dapps".into(),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_dapps_user: Some("test_user".into()),
|
|
|
|
flag_dapps_pass: Some("test_pass".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Sealing/Mining Options
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_author: Some("0xdeadbeefcafe0000000000000000000000000001".into()),
|
|
|
|
flag_force_sealing: true,
|
|
|
|
flag_reseal_on_txs: "all".into(),
|
|
|
|
flag_reseal_min_period: 4000u64,
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_work_queue_size: 20usize,
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_tx_gas_limit: Some("6283184".into()),
|
2016-10-27 19:28:34 +02:00
|
|
|
flag_tx_time_limit: Some(100u64),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_relay_set: "cheap".into(),
|
2016-11-25 15:12:57 +01:00
|
|
|
flag_usd_per_tx: "0.0025".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_usd_per_eth: "auto".into(),
|
|
|
|
flag_price_update_period: "hourly".into(),
|
|
|
|
flag_gas_floor_target: "4700000".into(),
|
|
|
|
flag_gas_cap: "6283184".into(),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_extra_data: Some("Parity".into()),
|
2016-10-15 14:46:33 +02:00
|
|
|
flag_tx_queue_size: 1024usize,
|
2016-10-10 23:04:43 +02:00
|
|
|
flag_tx_queue_gas: "auto".into(),
|
2016-10-15 14:46:33 +02:00
|
|
|
flag_tx_queue_strategy: "gas_factor".into(),
|
2016-10-27 19:28:34 +02:00
|
|
|
flag_tx_queue_ban_count: 1u16,
|
|
|
|
flag_tx_queue_ban_time: 180u16,
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_remove_solved: false,
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_notify_work: Some("http://localhost:3001".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Footprint Options
|
|
|
|
flag_tracing: "auto".into(),
|
|
|
|
flag_pruning: "auto".into(),
|
2016-10-14 14:44:56 +02:00
|
|
|
flag_pruning_history: 64u64,
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_cache_size_db: 64u32,
|
|
|
|
flag_cache_size_blocks: 8u32,
|
|
|
|
flag_cache_size_queue: 50u32,
|
2016-10-07 00:28:42 +02:00
|
|
|
flag_cache_size_state: 25u32,
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_cache_size: Some(128),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_fast_and_loose: false,
|
|
|
|
flag_db_compaction: "ssd".into(),
|
2016-10-03 11:13:10 +02:00
|
|
|
flag_fat_db: "auto".into(),
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Import/Export Options
|
|
|
|
flag_from: "1".into(),
|
|
|
|
flag_to: "latest".into(),
|
|
|
|
flag_format: None,
|
2016-10-24 15:09:13 +02:00
|
|
|
flag_no_seal_check: false,
|
2016-09-10 11:37:14 +02:00
|
|
|
|
|
|
|
// -- Snapshot Optons
|
|
|
|
flag_at: "latest".into(),
|
|
|
|
flag_no_periodic_snapshot: false,
|
|
|
|
|
|
|
|
// -- Virtual Machine Options
|
|
|
|
flag_jitvm: false,
|
|
|
|
|
|
|
|
// -- Legacy Options
|
|
|
|
flag_geth: false,
|
|
|
|
flag_testnet: false,
|
|
|
|
flag_import_geth_keys: false,
|
|
|
|
flag_datadir: None,
|
|
|
|
flag_networkid: None,
|
|
|
|
flag_peers: None,
|
|
|
|
flag_nodekey: None,
|
|
|
|
flag_nodiscover: false,
|
|
|
|
flag_jsonrpc: false,
|
|
|
|
flag_jsonrpc_off: false,
|
|
|
|
flag_webapp: false,
|
|
|
|
flag_dapps_off: false,
|
|
|
|
flag_rpc: false,
|
|
|
|
flag_rpcaddr: None,
|
|
|
|
flag_rpcport: None,
|
|
|
|
flag_rpcapi: None,
|
|
|
|
flag_rpccorsdomain: None,
|
|
|
|
flag_ipcdisable: false,
|
|
|
|
flag_ipc_off: false,
|
|
|
|
flag_ipcapi: None,
|
|
|
|
flag_ipcpath: None,
|
|
|
|
flag_gasprice: None,
|
|
|
|
flag_etherbase: None,
|
|
|
|
flag_extradata: None,
|
|
|
|
flag_cache: None,
|
|
|
|
|
|
|
|
// -- Miscellaneous Options
|
|
|
|
flag_version: false,
|
|
|
|
flag_config: "$HOME/.parity/config.toml".into(),
|
2016-09-11 11:52:12 +02:00
|
|
|
flag_logging: Some("own_tx=trace".into()),
|
|
|
|
flag_log_file: Some("/var/log/parity.log".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
flag_no_color: false,
|
2016-09-12 14:11:30 +02:00
|
|
|
flag_no_config: false,
|
2016-09-10 11:37:14 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-11 11:52:12 +02:00
|
|
|
#[test]
|
|
|
|
fn should_parse_config_and_return_errors() {
|
|
|
|
let config1 = Args::parse_config(include_str!("./config.invalid1.toml"));
|
|
|
|
let config2 = Args::parse_config(include_str!("./config.invalid2.toml"));
|
2016-11-29 13:23:28 +01:00
|
|
|
let config3 = Args::parse_config(include_str!("./config.invalid3.toml"));
|
2016-09-11 11:52:12 +02:00
|
|
|
|
2016-11-29 13:23:28 +01:00
|
|
|
match (config1, config2, config3) {
|
|
|
|
(Err(ArgsError::Parsing(_)), Err(ArgsError::Decode(_)), Err(ArgsError::UnknownFields(_))) => {},
|
|
|
|
(a, b, c) => {
|
|
|
|
assert!(false, "Got invalid error types: {:?}, {:?}, {:?}", a, b, c);
|
2016-09-11 11:52:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-10 11:37:14 +02:00
|
|
|
#[test]
|
|
|
|
fn should_deserialize_toml_file() {
|
|
|
|
let config: Config = toml::decode_str(include_str!("./config.toml")).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(config, Config {
|
2016-09-11 11:52:12 +02:00
|
|
|
parity: Some(Operating {
|
2016-09-10 11:37:14 +02:00
|
|
|
mode: Some("dark".into()),
|
|
|
|
mode_timeout: Some(15u64),
|
|
|
|
mode_alarm: Some(10u64),
|
|
|
|
chain: Some("./chain.json".into()),
|
|
|
|
db_path: None,
|
|
|
|
keys_path: None,
|
|
|
|
identity: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
account: Some(Account {
|
2016-09-10 11:37:14 +02:00
|
|
|
unlock: Some(vec!["0x1".into(), "0x2".into(), "0x3".into()]),
|
|
|
|
password: Some(vec!["passwdfile path".into()]),
|
|
|
|
keys_iterations: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
2016-11-07 17:40:53 +01:00
|
|
|
ui: Some(Ui {
|
2016-09-10 11:37:14 +02:00
|
|
|
force: None,
|
|
|
|
disable: Some(true),
|
|
|
|
port: None,
|
|
|
|
interface: None,
|
|
|
|
path: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
network: Some(Network {
|
2016-09-10 11:37:14 +02:00
|
|
|
disable: Some(false),
|
2016-10-18 18:16:00 +02:00
|
|
|
warp: Some(false),
|
2016-09-10 11:37:14 +02:00
|
|
|
port: None,
|
|
|
|
min_peers: Some(10),
|
|
|
|
max_peers: Some(20),
|
2016-10-24 18:25:27 +02:00
|
|
|
max_pending_peers: Some(30),
|
|
|
|
snapshot_peers: Some(40),
|
|
|
|
allow_ips: Some("public".into()),
|
2016-09-10 11:37:14 +02:00
|
|
|
nat: Some("any".into()),
|
|
|
|
id: None,
|
|
|
|
bootnodes: None,
|
|
|
|
discovery: Some(true),
|
|
|
|
node_key: None,
|
|
|
|
reserved_peers: Some("./path/to/reserved_peers".into()),
|
|
|
|
reserved_only: Some(true),
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
rpc: Some(Rpc {
|
2016-09-10 11:37:14 +02:00
|
|
|
disable: Some(true),
|
|
|
|
port: Some(8180),
|
|
|
|
interface: None,
|
|
|
|
cors: None,
|
|
|
|
apis: None,
|
|
|
|
hosts: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
ipc: Some(Ipc {
|
2016-09-10 11:37:14 +02:00
|
|
|
disable: None,
|
|
|
|
path: None,
|
|
|
|
apis: Some(vec!["rpc".into(), "eth".into()]),
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
dapps: Some(Dapps {
|
2016-09-10 11:37:14 +02:00
|
|
|
disable: None,
|
|
|
|
port: Some(8080),
|
|
|
|
path: None,
|
|
|
|
interface: None,
|
|
|
|
hosts: None,
|
|
|
|
user: Some("username".into()),
|
|
|
|
pass: Some("password".into())
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
mining: Some(Mining {
|
2016-09-10 11:37:14 +02:00
|
|
|
author: Some("0xdeadbeefcafe0000000000000000000000000001".into()),
|
|
|
|
force_sealing: Some(true),
|
|
|
|
reseal_on_txs: Some("all".into()),
|
|
|
|
reseal_min_period: Some(4000),
|
|
|
|
work_queue_size: None,
|
|
|
|
relay_set: None,
|
|
|
|
usd_per_tx: None,
|
|
|
|
usd_per_eth: None,
|
|
|
|
price_update_period: Some("hourly".into()),
|
|
|
|
gas_floor_target: None,
|
|
|
|
gas_cap: None,
|
2016-10-15 14:46:33 +02:00
|
|
|
tx_queue_size: Some(1024),
|
2016-10-10 23:04:43 +02:00
|
|
|
tx_queue_gas: Some("auto".into()),
|
2016-10-15 14:46:33 +02:00
|
|
|
tx_queue_strategy: None,
|
2016-10-27 19:28:34 +02:00
|
|
|
tx_queue_ban_count: None,
|
|
|
|
tx_queue_ban_time: None,
|
2016-09-10 11:37:14 +02:00
|
|
|
tx_gas_limit: None,
|
2016-10-27 19:28:34 +02:00
|
|
|
tx_time_limit: None,
|
2016-09-10 11:37:14 +02:00
|
|
|
extra_data: None,
|
|
|
|
remove_solved: None,
|
|
|
|
notify_work: None,
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
footprint: Some(Footprint {
|
2016-09-10 11:37:14 +02:00
|
|
|
tracing: Some("on".into()),
|
|
|
|
pruning: Some("fast".into()),
|
2016-10-14 14:44:56 +02:00
|
|
|
pruning_history: Some(64),
|
2016-09-10 11:37:14 +02:00
|
|
|
fast_and_loose: None,
|
|
|
|
cache_size: None,
|
|
|
|
cache_size_db: Some(128),
|
|
|
|
cache_size_blocks: Some(16),
|
|
|
|
cache_size_queue: Some(100),
|
2016-10-07 00:28:42 +02:00
|
|
|
cache_size_state: Some(25),
|
2016-09-10 11:37:14 +02:00
|
|
|
db_compaction: Some("ssd".into()),
|
2016-10-03 11:13:10 +02:00
|
|
|
fat_db: Some("off".into()),
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
snapshots: Some(Snapshots {
|
2016-09-10 11:37:14 +02:00
|
|
|
disable_periodic: Some(true),
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
vm: Some(VM {
|
2016-09-10 11:37:14 +02:00
|
|
|
jit: Some(false),
|
2016-09-11 11:52:12 +02:00
|
|
|
}),
|
|
|
|
misc: Some(Misc {
|
2016-09-10 11:37:14 +02:00
|
|
|
logging: Some("own_tx=trace".into()),
|
|
|
|
log_file: Some("/var/log/parity.log".into()),
|
2016-09-11 11:52:12 +02:00
|
|
|
color: Some(true),
|
|
|
|
})
|
2016-09-10 11:37:14 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|