From 864928397aaf6b39ad47483bec256741387b7ead Mon Sep 17 00:00:00 2001 From: str-mv Date: Mon, 29 Nov 2021 10:26:23 +0000 Subject: [PATCH] CORE-264 --- --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -993,7 +993,7 @@ ($collection:ident.$method:ident($($name:ident),*)) => {{ use pallet_unique::dispatch::Dispatched; - let collection = Dispatched::dispatch(>::new($collection).unwrap()); + let collection = Dispatched::dispatch(>::new($collection).unwrap_or_default()); let dispatch = collection.as_dyn(); dispatch.$method($($name),*) -- gitstuff