Skip to content

Commit

Permalink
prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ebatsell committed Dec 13, 2024
1 parent 03e5c53 commit e1c9a18
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion core/src/ballot_box.rs
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,6 @@ mod tests {
let ballot_box = BallotBox::new(Pubkey::default(), 0, 0, 0);
assert_eq!(ballot_box.operator_votes.len(), MAX_OPERATORS);
assert_eq!(ballot_box.ballot_tallies.len(), MAX_OPERATORS);
println!("expected_total: {}", expected_total);
}

#[test]
Expand Down
1 change: 0 additions & 1 deletion core/src/base_reward_router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,6 @@ mod tests {
+ size_of::<NcnRewardRoute>() * MAX_OPERATORS; // ncn_fee_group_reward_routes

assert_eq!(size_of::<BaseRewardRouter>(), expected_total);
println!("expected_total: {}", expected_total);
}

#[test]
Expand Down
1 change: 0 additions & 1 deletion core/src/epoch_snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,5 @@ mod tests {
+ size_of::<VaultOperatorStakeWeight>() * MAX_VAULT_OPERATOR_DELEGATIONS; // vault_operator_stake_weight

assert_eq!(size_of::<OperatorSnapshot>(), expected_total);
println!("expected_total: {}", expected_total);
}
}
1 change: 0 additions & 1 deletion core/src/ncn_reward_router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,6 @@ mod tests {
+ size_of::<VaultRewardRoute>() * MAX_VAULT_OPERATOR_DELEGATIONS; // vault_reward_routes

assert_eq!(size_of::<NcnRewardRouter>(), expected_total);
println!("expected_total: {}", expected_total);
}

#[test]
Expand Down
1 change: 0 additions & 1 deletion integration_tests/tests/tip_router/distribute_rewards.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ mod tests {
.get_ncn_reward_router(*group, operator, ncn, epoch)
.await?;

println!("\nTotal Rewards: {}", ncn_router.total_rewards());
total_rewards += ncn_router.total_rewards();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,6 @@ mod tests {
epoch,
)
.0;
let raw_account = fixture.get_account(&weight_table_pda).await?;
println!("raw_account: {:?}", raw_account);
// let weight_table_account = tip_router_client
// .get_weight_table(test_ncn.ncn_root.ncn_pubkey, epoch)
// .await?;

// println!("weight_table_account: {:?}", weight_table_account);

let ncn = test_ncn.ncn_root.ncn_pubkey;

let vault_root = test_ncn.vaults[0].clone();
Expand Down

0 comments on commit e1c9a18

Please sign in to comment.