@@ -883,6 +883,8 @@ pub mod pallet {
883
883
pub type TotalIssuance < T > = StorageValue < _ , u64 , ValueQuery , DefaultTotalIssuance < T > > ;
884
884
#[ pallet:: storage] // --- ITEM ( total_stake )
885
885
pub type TotalStake < T > = StorageValue < _ , u64 , ValueQuery > ;
886
+ #[ pallet:: storage] // --- ITEM ( dynamic_block ) -- block when dynamic was turned on.
887
+ pub type DynamicBlock < T > = StorageValue < _ , u64 , ValueQuery > ;
886
888
#[ pallet:: storage] // --- DMAP ( netuid ) --> total_volume | The total amount of TAO bought and sold since the start of the network.
887
889
pub type SubnetVolume < T : Config > =
888
890
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
@@ -970,9 +972,6 @@ pub mod pallet {
970
972
#[ pallet:: storage] // --- DMAP ( netuid ) --> subnet_name | Returns the name of the subnet.
971
973
pub type SubnetName < T : Config > =
972
974
StorageMap < _ , Identity , u16 , Vec < u8 > , ValueQuery , DefaultUnicodeVecU8 < T > > ;
973
- #[ pallet:: storage] // --- DMAP ( netuid ) --> block_at_dtao_transition | Returns the block when the subnet transitioned to DTAO.
974
- pub type DynamicBlock < T : Config > =
975
- StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultUnicodeVecU8 < T > > ;
976
975
977
976
/// ============================
978
977
/// ==== Global Parameters =====
0 commit comments