Skip to content
Snippets Groups Projects
Commit 43ef617b authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

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.
parent e2553a0a
Branches
No related merge requests found
...@@ -1196,7 +1196,6 @@ impl<T: Config> OnQueueChanged<AggregateMessageOrigin> for Pallet<T> { ...@@ -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)]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment