From 476d823658873d915cf67c348e6071c374a21749 Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Tue, 26 Dec 2023 15:09:56 -0700 Subject: [PATCH] fix: remove logs --- node/src/distributions/mainnet.rs | 1 - node/src/distributions/testnet.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/node/src/distributions/mainnet.rs b/node/src/distributions/mainnet.rs index 49cae535f..a75a42384 100644 --- a/node/src/distributions/mainnet.rs +++ b/node/src/distributions/mainnet.rs @@ -29,7 +29,6 @@ use tangle_testnet_runtime::{AccountId, Balance, ExistentialDeposit}; fn read_contents_to_substrate_accounts(path_str: &str) -> BTreeMap { let mut path = get_git_root(); path.push(path_str); - println!("Path {:?}", path_str); let json = read_contents(&path); let json_obj = json.as_object().expect("should be an object"); let mut accounts_map = BTreeMap::new(); diff --git a/node/src/distributions/testnet.rs b/node/src/distributions/testnet.rs index 8e7ee488f..8a87895f0 100644 --- a/node/src/distributions/testnet.rs +++ b/node/src/distributions/testnet.rs @@ -48,7 +48,6 @@ pub fn read_contents(path: &Path) -> Value { pub fn read_contents_to_evm_accounts(path_str: &str) -> Vec { let mut path = get_git_root(); path.push(path_str); - println!("Path {:?}", path_str); let json = read_contents(&path); let mut accounts = Vec::new(); for address in json.as_array().expect("should be an object") { @@ -63,7 +62,6 @@ pub fn read_contents_to_evm_accounts(path_str: &str) -> Vec { pub fn read_contents_to_substrate_accounts(path_str: &str) -> Vec { let mut path = get_git_root(); path.push(path_str); - println!("Path {:?}", path_str); let json = read_contents(&path); let mut accounts = Vec::new(); for address in json.as_array().expect("should be an object") {