@@ -596,7 +596,8 @@ pub mod pallet {
596596 #[ pallet:: storage] // --- ITEM ( tx_rate_limit )
597597 pub ( super ) type TxRateLimit < T > = StorageValue < _ , u64 , ValueQuery , DefaultTxRateLimit < T > > ;
598598 #[ pallet:: storage] // --- ITEM ( tx_rate_limit )
599- pub ( super ) type TxDelegateTakeRateLimit < T > = StorageValue < _ , u64 , ValueQuery , DefaultTxDelegateTakeRateLimit < T > > ;
599+ pub ( super ) type TxDelegateTakeRateLimit < T > =
600+ StorageValue < _ , u64 , ValueQuery , DefaultTxDelegateTakeRateLimit < T > > ;
600601 #[ pallet:: storage] // --- MAP ( key ) --> last_block
601602 pub ( super ) type LastTxBlock < T : Config > =
602603 StorageMap < _ , Identity , T :: AccountId , u64 , ValueQuery , DefaultLastTxBlock < T > > ;
@@ -912,7 +913,7 @@ pub mod pallet {
912913 MinBurnSet ( u16 , u64 ) , // --- Event created when setting min burn on a network.
913914 TxRateLimitSet ( u64 ) , // --- Event created when setting the transaction rate limit.
914915 TxDelegateTakeRateLimitSet ( u64 ) , // --- Event created when setting the delegate take transaction rate limit.
915- Sudid ( DispatchResult ) , // --- Event created when a sudo call is done.
916+ Sudid ( DispatchResult ) , // --- Event created when a sudo call is done.
916917 RegistrationAllowed ( u16 , bool ) , // --- Event created when registration is allowed/disallowed for a subnet.
917918 PowRegistrationAllowed ( u16 , bool ) , // --- Event created when POW registration is allowed/disallowed for a subnet.
918919 TempoSet ( u16 , u16 ) , // --- Event created when setting tempo on a network
@@ -927,8 +928,8 @@ pub mod pallet {
927928 NetworkMinLockCostSet ( u64 ) , // Event created when the network minimum locking cost is set.
928929 SubnetLimitSet ( u16 ) , // Event created when the maximum number of subnets is set
929930 NetworkLockCostReductionIntervalSet ( u64 ) , // Event created when the lock cost reduction is set
930- TakeDecreased ( T :: AccountId , T :: AccountId , u16 ) , // Event created when the take for a delegate is decreased.
931- TakeIncreased ( T :: AccountId , T :: AccountId , u16 ) , // Event created when the take for a delegate is increased.
931+ TakeDecreased ( T :: AccountId , T :: AccountId , u16 ) , // Event created when the take for a delegate is decreased.
932+ TakeIncreased ( T :: AccountId , T :: AccountId , u16 ) , // Event created when the take for a delegate is increased.
932933 HotkeySwapped {
933934 coldkey : T :: AccountId ,
934935 old_hotkey : T :: AccountId ,
0 commit comments