diff --git a/src/signer.rs b/src/signer.rs index 986b8a3959..a8b62c8fc2 100644 --- a/src/signer.rs +++ b/src/signer.rs @@ -147,35 +147,3 @@ where ))) } } - -impl Signer for Box + Send + Sync> -where - T: System, - S: Encode, - E: SignedExtra, -{ - fn account_id(&self) -> &T::AccountId { - (**self).account_id() - } - - fn nonce(&self) -> Option { - (**self).nonce() - } - - fn sign( - &self, - extrinsic: SignedPayload, - ) -> Pin< - Box< - dyn Future< - Output = Result< - UncheckedExtrinsic, - String, - >, - > + Send - + Sync, - >, - > { - (**self).sign(extrinsic) - } -}