Remove unused wallet listener and owner from config (#1483)

This commit is contained in:
Quentin Le Sceller 2018-09-06 10:34:08 +00:00 committed by GitHub
parent 54a4bb5b58
commit 2e6f7f72b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 26 deletions

View file

@ -106,24 +106,6 @@ fn comments() -> HashMap<String, String> {
.to_string(),
);
retval.insert(
"run_wallet_listener".to_string(),
"
#Whether to run the wallet listener with the server by default
"
.to_string(),
);
retval.insert(
"run_wallet_owner_api".to_string(),
"
# Whether to run the web-wallet API (will only run on localhost)
# grin wallet web will run this automatically, so this should
# only be set to true for test/development purposes
"
.to_string(),
);
retval.insert(
"run_test_miner".to_string(),
"

View file

@ -132,12 +132,6 @@ pub struct ServerConfig {
/// if enabled, this will disable logging to stdout
pub run_tui: Option<bool>,
/// Whether to run the wallet listener with the server by default
pub run_wallet_listener: Option<bool>,
/// Whether to run the web wallet owner listener
pub run_wallet_owner_api: Option<bool>,
/// Whether to use the DB wallet backend implementation
pub use_db_wallet: Option<bool>,
@ -177,8 +171,6 @@ impl Default for ServerConfig {
pool_config: pool::PoolConfig::default(),
skip_sync_wait: Some(false),
run_tui: Some(true),
run_wallet_listener: Some(false),
run_wallet_owner_api: Some(false),
use_db_wallet: None,
run_test_miner: Some(false),
test_miner_wallet_url: None,