diff --git a/runtime/parachains/src/configuration.rs b/runtime/parachains/src/configuration.rs index 23decc57d1b0..ad9d6e59e041 100644 --- a/runtime/parachains/src/configuration.rs +++ b/runtime/parachains/src/configuration.rs @@ -193,7 +193,7 @@ pub struct HostConfiguration { /// How long after dispute conclusion to accept statements. pub dispute_post_conclusion_acceptance_period: BlockNumber, /// The maximum number of dispute spam slots - /// TODO: Should be removed in next version + /// TODO: This will be removed once https://github.com/paritytech/polkadot/pull/6271 is merged pub dispute_max_spam_slots: u32, /// How long it takes for a dispute to conclude by time-out, if no supermajority is reached. pub dispute_conclusion_by_time_out_period: BlockNumber, diff --git a/runtime/parachains/src/disputes/slashing.rs b/runtime/parachains/src/disputes/slashing.rs index f329b8e11e4f..2dfdc87c4b4e 100644 --- a/runtime/parachains/src/disputes/slashing.rs +++ b/runtime/parachains/src/disputes/slashing.rs @@ -568,7 +568,6 @@ impl Pallet { fn initializer_on_new_session(session_index: SessionIndex) { // This should be small, as disputes are limited by spam slots, so no limit is // fine. - // TODO: without spam slots is this still valid? const REMOVE_LIMIT: u32 = u32::MAX; let config = >::config();