Remove TODO comment (#7260)

We should never migrate these types to `u64` as we will never have `u64`
messages left nor `u64` as message size left.
This commit is contained in:
Bastian Köcher
2023-05-21 22:10:26 +02:00
committed by GitHub
parent e2553a0a10
commit 43ef617bb8
@@ -1196,7 +1196,6 @@ impl<T: Config> OnQueueChanged<AggregateMessageOrigin> for Pallet<T> {
let para = match origin { let para = match origin {
AggregateMessageOrigin::Ump(UmpQueueId::Para(p)) => p, AggregateMessageOrigin::Ump(UmpQueueId::Para(p)) => p,
}; };
// TODO maybe migrate this to u64
let (count, size) = (count.saturated_into(), size.saturated_into()); let (count, size) = (count.saturated_into(), size.saturated_into());
// TODO paritytech/polkadot#6283: Remove all usages of `relay_dispatch_queue_size` // TODO paritytech/polkadot#6283: Remove all usages of `relay_dispatch_queue_size`
#[allow(deprecated)] #[allow(deprecated)]