From 8c09428be50e12cd70dfdb72fe03fa45be9ecebd Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 21 Jul 2025 10:57:57 +0300 Subject: [PATCH] Update the comment --- crates/node/src/geth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node/src/geth.rs b/crates/node/src/geth.rs index 8913ebc..ddb66a0 100644 --- a/crates/node/src/geth.rs +++ b/crates/node/src/geth.rs @@ -86,7 +86,7 @@ impl Instance { create_dir_all(&self.base_directory)?; create_dir_all(&self.logs_directory)?; - // Modifying the genesis file and adding all of the additional callers as contract accounts. + // Modifying the genesis file so that we get our private key to control the other accounts. let mut genesis = serde_json::from_str::(&genesis)?; for additional_caller in self.additional_callers.iter() { let account = genesis.alloc.entry(*additional_caller).or_default();