From a127ea7c363d711c346be73d54a8ff7b78e88564 Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Fri, 22 Sep 2023 10:36:53 +0200 Subject: [PATCH] [runtime] fix type of existential deposit --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 9870ef1a..4418bf83 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -419,7 +419,7 @@ parameter_types! { pub const MomentsPerDay: Moment = 86_400_000; // [ms/d] pub const DefaultDemurrage: Demurrage = Demurrage::from_bits(0x0000000000000000000001E3F0A8A973_i128); /// 0.000005 - pub const EncointerExistentialDeposit: BalanceType = BalanceType::from_bits(0x0000000000000000000053e2d6238da4_i128); + pub const EncointerExistentialDeposit: BalanceType = BalanceType::from_bits(0x0000000000000000000053e2d6238da4_u128); pub const MeetupSizeTarget: u64 = 10; pub const MeetupMinSize: u64 = 3; pub const MeetupNewbieLimitDivider: u64 = 2;