From b99fe6877a2a657fc666e32be32359b76425498b Mon Sep 17 00:00:00 2001 From: Alessandro Siniscalchi Date: Fri, 12 Apr 2024 09:13:19 +0200 Subject: [PATCH] nonce type is u32 mimicing parachains --- primitives/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 8374a991f..d50f18443 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -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;