rustfmt changes

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2026-06-18 14:41:58 +03:00
parent 5e17c12677
commit 0e228d890d
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
4 changed files with 7 additions and 4 deletions

View File

@ -41,8 +41,8 @@ use ghost_networks::{
NetworkData, NetworkDataBasicHandler, NetworkDataInspectHandler, NetworkDataMutateHandler,
NetworkType,
};
use ghost_traits::exposure::ExposureListener;
use ghost_traits::evictor::StakingEvictor;
use ghost_traits::exposure::ExposureListener;
pub mod migrations;
pub mod weights;

View File

@ -1,5 +1,5 @@
#![cfg_attr(not(feature = "std"), no_std)]
pub mod evictor;
pub mod exposure;
pub mod networks;
pub mod evictor;

View File

@ -1,7 +1,7 @@
use super::*;
use frame_support::{dispatch::DispatchResultWithPostInfo, traits::PrivilegeCmp};
use ghost_traits::exposure::ExposureListener;
use ghost_traits::evictor::StakingEvictor;
use ghost_traits::exposure::ExposureListener;
use pallet_alliance::{ProposalIndex, ProposalProvider};
use primitives::Balance;
use sp_runtime::DispatchError;

View File

@ -79,7 +79,10 @@ mod genesis_config_presets;
mod impls;
mod weights;
pub use impls::{AllianceProposalProvider, EqualOrGreatestRootCmp, StakingExposureListener, RuntimeStakingEvictor};
pub use impls::{
AllianceProposalProvider, EqualOrGreatestRootCmp, RuntimeStakingEvictor,
StakingExposureListener,
};
// Governance configuration.
pub mod cult;