@@ -185,6 +185,7 @@ parameter_types! {
185
185
pub const InitialDissolveNetworkScheduleDuration : u64 = 5 * 24 * 60 * 60 / 12 ; // Default as 5 days
186
186
pub const InitialTaoWeight : u64 = 0 ; // 100% global weight.
187
187
pub const InitialEmaPriceHalvingPeriod : u64 = 201_600_u64 ; // 4 weeks
188
+ pub const DurationOfStartCall : u64 = 7 * 24 * 60 * 60 / 12 ; // Default as 7 days
188
189
}
189
190
190
191
// Configure collective pallet for council
@@ -408,6 +409,7 @@ impl crate::Config for Test {
408
409
type InitialDissolveNetworkScheduleDuration = InitialDissolveNetworkScheduleDuration ;
409
410
type InitialTaoWeight = InitialTaoWeight ;
410
411
type InitialEmaPriceHalvingPeriod = InitialEmaPriceHalvingPeriod ;
412
+ type DurationOfStartCall = DurationOfStartCall ;
411
413
}
412
414
413
415
pub struct OriginPrivilegeCmp ;
@@ -662,6 +664,14 @@ pub fn add_network(netuid: u16, tempo: u16, _modality: u16) {
662
664
SubtensorModule :: init_new_network ( netuid, tempo) ;
663
665
SubtensorModule :: set_network_registration_allowed ( netuid, true ) ;
664
666
SubtensorModule :: set_network_pow_registration_allowed ( netuid, true ) ;
667
+ FirstEmissionBlockNumber :: < Test > :: insert ( netuid, 1 ) ;
668
+ }
669
+
670
+ #[ allow( dead_code) ]
671
+ pub fn add_network_without_emission_block ( netuid : u16 , tempo : u16 , _modality : u16 ) {
672
+ SubtensorModule :: init_new_network ( netuid, tempo) ;
673
+ SubtensorModule :: set_network_registration_allowed ( netuid, true ) ;
674
+ SubtensorModule :: set_network_pow_registration_allowed ( netuid, true ) ;
665
675
}
666
676
667
677
#[ allow( dead_code) ]
@@ -670,6 +680,22 @@ pub fn add_dynamic_network(hotkey: &U256, coldkey: &U256) -> u16 {
670
680
let lock_cost = SubtensorModule :: get_network_lock_cost ( ) ;
671
681
SubtensorModule :: add_balance_to_coldkey_account ( coldkey, lock_cost) ;
672
682
683
+ assert_ok ! ( SubtensorModule :: register_network(
684
+ RawOrigin :: Signed ( * coldkey) . into( ) ,
685
+ * hotkey
686
+ ) ) ;
687
+ NetworkRegistrationAllowed :: < Test > :: insert ( netuid, true ) ;
688
+ NetworkPowRegistrationAllowed :: < Test > :: insert ( netuid, true ) ;
689
+ FirstEmissionBlockNumber :: < Test > :: insert ( netuid, 0 ) ;
690
+ netuid
691
+ }
692
+
693
+ #[ allow( dead_code) ]
694
+ pub fn add_dynamic_network_without_emission_block ( hotkey : & U256 , coldkey : & U256 ) -> u16 {
695
+ let netuid = SubtensorModule :: get_next_netuid ( ) ;
696
+ let lock_cost = SubtensorModule :: get_network_lock_cost ( ) ;
697
+ SubtensorModule :: add_balance_to_coldkey_account ( coldkey, lock_cost) ;
698
+
673
699
assert_ok ! ( SubtensorModule :: register_network(
674
700
RawOrigin :: Signed ( * coldkey) . into( ) ,
675
701
* hotkey
0 commit comments