mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Remove unused wallet listener and owner from config (#1483)
This commit is contained in:
parent
54a4bb5b58
commit
2e6f7f72b3
2 changed files with 0 additions and 26 deletions
|
@ -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(),
|
||||
"
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue