From fd85de3eaa625c1487e7968da1ae4c7fa666b52f Mon Sep 17 00:00:00 2001 From: "crypdough.eth" <106392730+crypdoughdoteth@users.noreply.github.com> Date: Mon, 23 Jan 2023 21:43:26 -0500 Subject: [PATCH] Update examples/wallets/examples/keystores.rs Co-authored-by: Rohit Narurkar --- examples/wallets/examples/keystores.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/wallets/examples/keystores.rs b/examples/wallets/examples/keystores.rs index 8522ae9a..420825f3 100644 --- a/examples/wallets/examples/keystores.rs +++ b/examples/wallets/examples/keystores.rs @@ -12,7 +12,7 @@ async fn main() -> Result<()>{ dotenv().ok(); let api_key = std::env::var("API_KEY").expect("expected environmental variable"); - let encryption_path = std::env::var("ENCYPTION_PATH").expect("expected environmental variable"); + let encryption_path = std::env::var("ENCRYPTION_PATH").expect("expected environmental variable"); let decryption_path = std::env::var("DECRYPTION_PATH").expect("expected environmental variable"); let password = std::env::var("PASSWORD").expect("expected environmental variable");