From d5bf1c8e00b4e523d4a30f9d2af3dfe76c5f5410 Mon Sep 17 00:00:00 2001 From: Dmitry Lavrenov Date: Mon, 23 Sep 2024 11:18:49 +0300 Subject: [PATCH] RuntimeEvent to be first at pallet_balances::Config --- crates/humanode-runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/humanode-runtime/src/lib.rs b/crates/humanode-runtime/src/lib.rs index ede27090f..3e386d622 100644 --- a/crates/humanode-runtime/src/lib.rs +++ b/crates/humanode-runtime/src/lib.rs @@ -438,11 +438,11 @@ impl pallet_pot::Config for Runtime { } impl pallet_balances::Config for Runtime { + /// The ubiquitous event type. + type RuntimeEvent = RuntimeEvent; type ReserveIdentifier = [u8; 8]; /// The type for recording an account's balance. type Balance = Balance; - /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = pallet_pot::DepositUnbalancedFungible; type ExistentialDeposit = ConstU128<500>; type AccountStore = System;