From 4a44011a47a98a8dbb6201c32b9d3eda0eb9f202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Sun, 21 May 2023 01:03:48 +0200 Subject: [PATCH] Remove TODO comment We should never migrate these types to `u64` as we will never have `u64` messages left nor `u64` as message size left. --- runtime/parachains/src/inclusion/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/parachains/src/inclusion/mod.rs b/runtime/parachains/src/inclusion/mod.rs index 6af59090a073..92cc98bdee69 100644 --- a/runtime/parachains/src/inclusion/mod.rs +++ b/runtime/parachains/src/inclusion/mod.rs @@ -1196,7 +1196,6 @@ impl OnQueueChanged for Pallet { 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)]