Skip to content

Commit

Permalink
Undo runtime debug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk committed Dec 13, 2024
1 parent eb1ff06 commit daaf59d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion pallets/inflation-rewards/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ impl<T: Config> AuthorNotingHook<T::AccountId> for Pallet<T> {
}
}
Err(e) => {
log::error!("Fail to distribute rewards: {:?}", e)
log::debug!("Fail to distribute rewards: {:?}", e)
}
}
// we remove the para id from container-chains to reward
Expand Down
11 changes: 0 additions & 11 deletions solo-chains/runtime/dancelight/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1074,17 +1074,6 @@ impl parachains_scheduler::common::AssignmentProvider<BlockNumberFor<Runtime>>
for CollatorAssignmentProvider
{
fn pop_assignment_for_core(core_idx: CoreIndex) -> Option<Assignment> {
let accounts_with_ed = [
crate::StakingAccount::get(),
crate::DancelightBondAccount::get(),
crate::PendingRewardsAccount::get(),
];

log::error!("ACCOUNTS WITH ED:");
for a in &accounts_with_ed {
log::error!("{:?}", a);
}

let assigned_collators = TanssiCollatorAssignment::collator_container_chain();
let assigned_paras: Vec<ParaId> = assigned_collators
.container_chains
Expand Down

0 comments on commit daaf59d

Please sign in to comment.