Skip to content

Commit

Permalink
make nonce public (paritytech#9810)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc authored Sep 18, 2021
1 parent c000780 commit 91b386f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/system/src/extensions/check_nonce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use sp_std::vec;
/// extension sets some kind of priority upon validating transactions.
#[derive(Encode, Decode, Clone, Eq, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]
pub struct CheckNonce<T: Config>(#[codec(compact)] T::Index);
pub struct CheckNonce<T: Config>(#[codec(compact)] pub T::Index);

impl<T: Config> CheckNonce<T> {
/// utility constructor. Used only in client/factory code.
Expand Down

0 comments on commit 91b386f

Please sign in to comment.