Skip to content

Commit

Permalink
make subxt::Config::Extrinsic Send (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wizdave97 authored Oct 7, 2022
1 parent 98af356 commit 51179a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subxt/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub trait Config: 'static {
type Signature: Verify + Encode + Send + Sync + 'static;

/// Extrinsic type within blocks.
type Extrinsic: Parameter + Extrinsic + Debug + MaybeSerializeDeserialize;
type Extrinsic: Parameter + Extrinsic + Debug + MaybeSerializeDeserialize + Send;

/// This type defines the extrinsic extra and additional parameters.
type ExtrinsicParams: crate::tx::ExtrinsicParams<Self::Index, Self::Hash>;
Expand Down

0 comments on commit 51179a8

Please sign in to comment.