Skip to content

Commit ea206b3

Browse files
author
Grigoriy Simonov
committed
remove unneeded constraints in UncheckedExtrinsic
1 parent f3ff014 commit ea206b3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

primitives/self-contained/src/unchecked_extrinsic.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,18 @@ where
108108
}
109109
}
110110

111+
// impl<Address, AccountId, Call, Signature, Extension, Lookup> Checkable<ChainContext<Runtime>> for UncheckedExtrinsic<Address, Call, Signature, Extension> {
112+
113+
// }
114+
111115
impl<Address, AccountId, Call, Signature, Extension, Lookup> Checkable<Lookup>
112116
for UncheckedExtrinsic<Address, Call, Signature, Extension>
113117
where
114118
Address: Member + MaybeDisplay,
115-
Call: Encode + Member + SelfContainedCall + Dispatchable,
119+
Call: Encode + Member + SelfContainedCall,
116120
Signature: Member + traits::Verify,
117121
<Signature as traits::Verify>::Signer: IdentifyAccount<AccountId = AccountId>,
118-
Extension: Encode + TransactionExtension<Call>,
122+
Extension: TransactionExtension<Call>,
119123
AccountId: Member + MaybeDisplay,
120124
Lookup: traits::Lookup<Source = Address, Target = AccountId>,
121125
{

0 commit comments

Comments
 (0)