Rename `config.toml` to `keys.toml`

This keeps it clear that the file contains key material (like the
previous `keys.txt` name did).
This commit is contained in:
Jack Grigg 2024-06-20 23:35:24 +00:00
parent ee2d558252
commit 6b8cce9d5d
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ use zcash_protocol::consensus::Parameters;
use crate::error;
const DEFAULT_WALLET_DIR: &str = "./zec_sqlite_wallet";
const KEYS_FILE: &str = "config.toml";
const KEYS_FILE: &str = "keys.toml";
const BLOCKS_FOLDER: &str = "blocks";
const DATA_DB: &str = "data.sqlite";