Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Config::Extrinsic Send #681

Merged
merged 1 commit into from
Oct 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
make subxt::Config::Extrinsic Send
Wizdave97 committed Oct 6, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 09acdb33abe8e3b3dd9220dfec3e7cc2da519691
2 changes: 1 addition & 1 deletion subxt/src/config.rs
Original file line number Diff line number Diff line change
@@ -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>;