2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2017-07-12 11:03:21 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2017-07-12 11:03:21 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2017-07-12 11:03:21 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-07-12 11:03:21 +02:00
|
|
|
|
2017-07-22 05:37:38 +02:00
|
|
|
use std::io::{Error, ErrorKind};
|
|
|
|
|
|
|
|
pub fn preset_config_string(arg: &str) -> Result<&'static str, Error> {
|
2017-07-12 11:03:21 +02:00
|
|
|
match arg.to_lowercase().as_ref() {
|
2017-07-13 14:25:41 +02:00
|
|
|
"dev" => Ok(include_str!("./config.dev.toml")),
|
2017-07-14 05:15:39 +02:00
|
|
|
"mining" => Ok(include_str!("./config.mining.toml")),
|
2017-07-14 05:42:56 +02:00
|
|
|
"non-standard-ports" => Ok(include_str!("./config.non-standard-ports.toml")),
|
2017-07-17 08:03:57 +02:00
|
|
|
"insecure" => Ok(include_str!("./config.insecure.toml")),
|
|
|
|
"dev-insecure" => Ok(include_str!("./config.dev-insecure.toml")),
|
2017-07-22 06:09:43 +02:00
|
|
|
_ => Err(Error::new(ErrorKind::InvalidInput, "Config doesn't match any presets [dev, mining, non-standard-ports, insecure, dev-insecure]"))
|
2017-07-12 11:03:21 +02:00
|
|
|
}
|
2018-06-04 10:19:50 +02:00
|
|
|
}
|