Skip to content

Commit

Permalink
fix: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Dec 26, 2023
1 parent 29fdc4c commit 476d823
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion node/src/distributions/mainnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ use tangle_testnet_runtime::{AccountId, Balance, ExistentialDeposit};
fn read_contents_to_substrate_accounts(path_str: &str) -> BTreeMap<AccountId, f64> {
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();
Expand Down
2 changes: 0 additions & 2 deletions node/src/distributions/testnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pub fn read_contents(path: &Path) -> Value {
pub fn read_contents_to_evm_accounts(path_str: &str) -> Vec<H160> {
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") {
Expand All @@ -63,7 +62,6 @@ pub fn read_contents_to_evm_accounts(path_str: &str) -> Vec<H160> {
pub fn read_contents_to_substrate_accounts(path_str: &str) -> Vec<AccountId> {
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") {
Expand Down

0 comments on commit 476d823

Please sign in to comment.