From 6b8cce9d5dd5032aacf47ce246dbbc79d503f74b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 20 Jun 2024 23:35:24 +0000 Subject: [PATCH] Rename `config.toml` to `keys.toml` This keeps it clear that the file contains key material (like the previous `keys.txt` name did). --- src/data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.rs b/src/data.rs index f26f9e9..ad94a00 100644 --- a/src/data.rs +++ b/src/data.rs @@ -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";