Skip to content

Commit

Permalink
Merge pull request #2 from mangata-finance/feature/fix-rpc-nonce--pos…
Browse files Browse the repository at this point in the history
…tfork

Fix for nonce rpc
  • Loading branch information
gleb-urvanov authored Aug 13, 2021
2 parents d5da18d + 44cf175 commit 01a63ba
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 @@ -35,7 +35,7 @@ use sp_std::vec;
/// Note that this does not set any priority by default. Make sure that AT LEAST one of the signed
/// extension sets some kind of priority upon validating transactions.
#[derive(Encode, Decode, Clone, Eq, PartialEq)]
pub struct CheckNonce<T: Trait>(#[codec(compact)] T::Index);
pub struct CheckNonce<T: Trait>(#[codec(compact)] pub T::Index);

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

0 comments on commit 01a63ba

Please sign in to comment.