From 43ef617bb8fd2704b9529661fb0826a6ef614e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <git@kchr.de> Date: Sun, 21 May 2023 22:10:26 +0200 Subject: [PATCH] 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. --- polkadot/runtime/parachains/src/inclusion/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/polkadot/runtime/parachains/src/inclusion/mod.rs b/polkadot/runtime/parachains/src/inclusion/mod.rs index 6af59090a07..92cc98bdee6 100644 --- a/polkadot/runtime/parachains/src/inclusion/mod.rs +++ b/polkadot/runtime/parachains/src/inclusion/mod.rs @@ -1196,7 +1196,6 @@ impl<T: Config> OnQueueChanged<AggregateMessageOrigin> for Pallet<T> { let para = match origin { AggregateMessageOrigin::Ump(UmpQueueId::Para(p)) => p, }; - // TODO maybe migrate this to u64 let (count, size) = (count.saturated_into(), size.saturated_into()); // TODO paritytech/polkadot#6283: Remove all usages of `relay_dispatch_queue_size` #[allow(deprecated)] -- GitLab