Fixed account_manager data dir.

- Default data directory for the account_manager, now points to ~/.lighthouse-validator, which is the same data dir as the validator binary.
This commit is contained in:
Luke Anderson 2019-06-26 13:04:05 +10:00
parent 9c6af0397d
commit 8bd9ccdaa0
No known key found for this signature in database
GPG Key ID: 44408169EC61E228

View File

@ -6,7 +6,7 @@ use std::path::PathBuf;
use types::test_utils::generate_deterministic_keypair;
use validator_client::Config as ValidatorClientConfig;
pub const DEFAULT_DATA_DIR: &str = ".lighthouse-account-manager";
pub const DEFAULT_DATA_DIR: &str = ".lighthouse-validator";
pub const CLIENT_CONFIG_FILENAME: &str = "account-manager.toml";
fn main() {