From c4875867e0556a604804a5d58611d070712f98cd Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Wed, 30 Nov 2022 22:04:20 +0100 Subject: [PATCH] no default instance --- parachains/common/src/impls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parachains/common/src/impls.rs b/parachains/common/src/impls.rs index 87edb28d9f..91112cdae9 100644 --- a/parachains/common/src/impls.rs +++ b/parachains/common/src/impls.rs @@ -71,7 +71,7 @@ where /// A `HandleCredit` implementation that naively transfers the fees to the block author. /// Will drop and burn the assets in case the transfer fails. -pub struct AssetsToBlockAuthor(PhantomData<(R, I)>); +pub struct AssetsToBlockAuthor(PhantomData<(R, I)>); impl HandleCredit, pallet_assets::Pallet> for AssetsToBlockAuthor where I: 'static,