parity-ethereum: rename crate 🌵

This commit is contained in:
5chdn
2018-07-05 15:27:34 +02:00
parent f2a23fcb22
commit 8a698d6fb0
7 changed files with 77 additions and 77 deletions

View File

@@ -103,7 +103,7 @@ impl Configuration {
/// # Example
///
/// ```
/// let _cfg = parity::Configuration::parse_cli(&["--light", "--chain", "koven"]).unwrap();
/// let _cfg = parity_ethereum::Configuration::parse_cli(&["--light", "--chain", "koven"]).unwrap();
/// ```
pub fn parse_cli<S: AsRef<str>>(command: &[S]) -> Result<Self, ArgsError> {
let config = Configuration {

View File

@@ -18,7 +18,7 @@
#![warn(missing_docs)]
extern crate parity;
extern crate parity_ethereum;
extern crate ctrlc;
extern crate dir;
@@ -39,7 +39,7 @@ use std::sync::Arc;
use ctrlc::CtrlC;
use dir::default_hypervisor_path;
use fdlimit::raise_fd_limit;
use parity::{start, ExecutionAction};
use parity_ethereum::{start, ExecutionAction};
use parking_lot::{Condvar, Mutex};
fn updates_path(name: &str) -> PathBuf {
@@ -133,7 +133,7 @@ fn main_direct(force_can_restart: bool) -> i32 {
let mut conf = {
let args = std::env::args().collect::<Vec<_>>();
parity::Configuration::parse_cli(&args).unwrap_or_else(|e| e.exit())
parity_ethereum::Configuration::parse_cli(&args).unwrap_or_else(|e| e.exit())
};
if let Some(spec_override) = take_spec_name_override() {