Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
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
14 changes: 8 additions & 6 deletions core/sr-primitives/src/generic/checked_extrinsic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,16 @@ where
info: DispatchInfo,
len: usize,
) -> Result<DispatchResult, DispatchError> {
let maybe_who = if let Some((id, extra)) = self.signed {
Extra::pre_dispatch(extra, &id, &self.function, info, len)?;
Some(id)
let (maybe_who, pre) = if let Some((id, extra)) = self.signed {
let pre = Extra::pre_dispatch(extra, &id, &self.function, info, len)?;
(Some(id), pre)
} else {
Extra::pre_dispatch_unsigned(&self.function, info, len)?;
None
let pre = Extra::pre_dispatch_unsigned(&self.function, info, len)?;
(None, pre)
};
Ok(self.function.dispatch(Origin::from(maybe_who)))
let res = self.function.dispatch(Origin::from(maybe_who));
Extra::post_dispatch(pre, info, len);
Ok(res)
}
}

Expand Down
2 changes: 2 additions & 0 deletions core/sr-primitives/src/generic/unchecked_extrinsic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ mod tests {
type AccountId = u64;
type Call = ();
type AdditionalSigned = ();
type Pre = ();

fn additional_signed(&self) -> rstd::result::Result<(), &'static str> { Ok(()) }
}

Expand Down
37 changes: 27 additions & 10 deletions core/sr-primitives/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,9 @@ pub trait SignedExtension:
/// from the transaction using the `additional_signed` function.
type AdditionalSigned: Encode;

/// The type that encodes information that can be passed from pre_dispatch to post-dispatch.
type Pre: Default;

/// Construct any additional data that should be in the signed payload of the transaction. Can
/// also perform any pre-signature-verification checks and return an error if needed.
fn additional_signed(&self) -> Result<Self::AdditionalSigned, &'static str>;
Expand All @@ -830,8 +833,8 @@ pub trait SignedExtension:
call: &Self::Call,
info: DispatchInfo,
len: usize,
) -> Result<(), DispatchError> {
self.validate(who, call, info, len).map(|_| ())
) -> Result<Self::Pre, DispatchError> {
self.validate(who, call, info, len).map(|_| Self::Pre::default())
}

/// Validate an unsigned transaction for the transaction queue. Normally the default
Expand All @@ -848,9 +851,16 @@ pub trait SignedExtension:
call: &Self::Call,
info: DispatchInfo,
len: usize,
) -> Result<(), DispatchError> {
Self::validate_unsigned(call, info, len).map(|_| ())
) -> Result<Self::Pre, DispatchError> {
Self::validate_unsigned(call, info, len).map(|_| Self::Pre::default())
}

/// Do any post-flight stuff for a transaction.
fn post_dispatch(
_pre: Self::Pre,
_info: DispatchInfo,
_len: usize,
) { }
}

macro_rules! tuple_impl_indexed {
Expand All @@ -866,6 +876,7 @@ macro_rules! tuple_impl_indexed {
type AccountId = AccountId;
type Call = Call;
type AdditionalSigned = ($($direct::AdditionalSigned,)+);
type Pre = ($($direct::Pre,)+);
fn additional_signed(&self) -> Result<Self::AdditionalSigned, &'static str> {
Ok(( $(self.$index.additional_signed()?,)+ ))
}
Expand All @@ -885,9 +896,8 @@ macro_rules! tuple_impl_indexed {
call: &Self::Call,
info: DispatchInfo,
len: usize,
) -> Result<(), DispatchError> {
$(self.$index.pre_dispatch(who, call, info, len)?;)+
Ok(())
) -> Result<Self::Pre, DispatchError> {
Ok(($(self.$index.pre_dispatch(who, call, info, len)?,)+))
}
fn validate_unsigned(
call: &Self::Call,
Expand All @@ -901,9 +911,15 @@ macro_rules! tuple_impl_indexed {
call: &Self::Call,
info: DispatchInfo,
len: usize,
) -> Result<(), DispatchError> {
$($direct::pre_dispatch_unsigned(call, info, len)?;)+
Ok(())
) -> Result<Self::Pre, DispatchError> {
Ok(($($direct::pre_dispatch_unsigned(call, info, len)?,)+))
}
fn post_dispatch(
pre: Self::Pre,
info: DispatchInfo,
len: usize,
) {
$($direct::post_dispatch(pre.$index, info, len);)+
}
}

Expand Down Expand Up @@ -931,6 +947,7 @@ impl SignedExtension for () {
type AccountId = u64;
type AdditionalSigned = ();
type Call = ();
type Pre = ();
fn additional_signed(&self) -> rstd::result::Result<(), &'static str> { Ok(()) }
}

Expand Down
4 changes: 2 additions & 2 deletions node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to equal spec_version. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 134,
impl_version: 134,
spec_version: 135,
impl_version: 135,
apis: RUNTIME_API_VERSIONS,
};

Expand Down
1 change: 1 addition & 0 deletions srml/balances/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,7 @@ impl<T: Trait<I>, I: Instance + Clone + Eq> SignedExtension for TakeFees<T, I> {
type AccountId = T::AccountId;
type Call = T::Call;
type AdditionalSigned = ();
type Pre = ();
fn additional_signed(&self) -> rstd::result::Result<(), &'static str> { Ok(()) }

fn validate(
Expand Down
6 changes: 6 additions & 0 deletions srml/system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -881,6 +881,7 @@ impl<T: Trait + Send + Sync> SignedExtension for CheckWeight<T> {
type AccountId = T::AccountId;
type Call = T::Call;
type AdditionalSigned = ();
type Pre = ();

fn additional_signed(&self) -> rstd::result::Result<(), &'static str> { Ok(()) }

Expand Down Expand Up @@ -944,6 +945,7 @@ impl<T: Trait> SignedExtension for CheckNonce<T> {
type AccountId = T::AccountId;
type Call = T::Call;
type AdditionalSigned = ();
type Pre = ();

fn additional_signed(&self) -> rstd::result::Result<(), &'static str> { Ok(()) }

Expand Down Expand Up @@ -1017,6 +1019,8 @@ impl<T: Trait + Send + Sync> SignedExtension for CheckEra<T> {
type AccountId = T::AccountId;
type Call = T::Call;
type AdditionalSigned = T::Hash;
type Pre = ();

fn additional_signed(&self) -> Result<Self::AdditionalSigned, &'static str> {
let current_u64 = <Module<T>>::block_number().saturated_into::<u64>();
let n = (self.0).0.birth(current_u64).saturated_into::<T::BlockNumber>();
Expand Down Expand Up @@ -1047,6 +1051,8 @@ impl<T: Trait + Send + Sync> SignedExtension for CheckGenesis<T> {
type AccountId = T::AccountId;
type Call = <T as Trait>::Call;
type AdditionalSigned = T::Hash;
type Pre = ();

fn additional_signed(&self) -> Result<Self::AdditionalSigned, &'static str> {
Ok(<Module<T>>::block_hash(T::BlockNumber::zero()))
}
Expand Down