Skip to content

Commit

Permalink
nonce type is u32 mimicing parachains (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
asiniscalchi authored Apr 12, 2024
1 parent 91ea7fc commit d09d5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub type Balance = u128;
pub type Moment = u64;

/// Nonce of a transaction in the parachain.
pub type Nonce = u64;
pub type Nonce = u32;

/// Weight-to-Fee type used by Laos parachain.
pub type WeightToFee = IdentityFee<Balance>;
Expand Down

0 comments on commit d09d5e0

Please sign in to comment.