-
Notifications
You must be signed in to change notification settings - Fork 127
Updates #874
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
Updates #874
Conversation
| derive_more = { version = "2.0", default-features = false, features = ["from"] } | ||
| derive_more = { version = "2.1", default-features = false, features = ["from"] } | ||
| either = { version = "1.6", default-features = false } | ||
| env_logger = "0.11.8" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the bugfix-part to be more consistent.
| ) -> UncheckedExtrinsic<ExtrinsicAddress<T>, Call, Signature<T>, TxExtension<T>> { | ||
| match self.signer() { | ||
| Some(signer) => compose_extrinsic_offline!(signer, call, self.extrinsic_params(nonce)), | ||
| None => UncheckedExtrinsic { preamble: Preamble::Bare(5), function: call }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only "real" change in this PR.
This PR added a new field encoded_call to the UncheckedExtrinsic type: paritytech/polkadot-sdk#10390
haerdib
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks for investigating!
cargo update