@@ -891,34 +891,34 @@ pub mod pallet {
891
891
pub type TotalStake < T > = StorageValue < _ , u64 , ValueQuery > ;
892
892
#[ pallet:: storage] // --- ITEM ( dynamic_block ) -- block when dynamic was turned on.
893
893
pub type DynamicBlock < T > = StorageValue < _ , u64 , ValueQuery > ;
894
- #[ pallet:: storage] // --- DMAP ( netuid ) --> total_volume | The total amount of TAO bought and sold since the start of the network.
894
+ #[ pallet:: storage] // --- MAP ( netuid ) --> total_volume | The total amount of TAO bought and sold since the start of the network.
895
895
pub type SubnetVolume < T : Config > =
896
896
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
897
- #[ pallet:: storage] // --- DMAP ( netuid ) --> tao_in_subnet | Returns the amount of TAO in the subnet.
897
+ #[ pallet:: storage] // --- MAP ( netuid ) --> tao_in_subnet | Returns the amount of TAO in the subnet.
898
898
pub type SubnetTAO < T : Config > =
899
899
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
900
- #[ pallet:: storage] // --- DMAP ( netuid ) --> alpha_in_emission | Returns the amount of alph in emission into the pool per block.
900
+ #[ pallet:: storage] // --- MAP ( netuid ) --> alpha_in_emission | Returns the amount of alph in emission into the pool per block.
901
901
pub type SubnetAlphaInEmission < T : Config > =
902
902
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
903
- #[ pallet:: storage] // --- DMAP ( netuid ) --> alpha_out_emission | Returns the amount of alpha out emission into the network per block.
903
+ #[ pallet:: storage] // --- MAP ( netuid ) --> alpha_out_emission | Returns the amount of alpha out emission into the network per block.
904
904
pub type SubnetAlphaOutEmission < T : Config > =
905
905
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
906
- #[ pallet:: storage] // --- DMAP ( netuid ) --> tao_in_emission | Returns the amount of tao emitted into this subent on the last block.
906
+ #[ pallet:: storage] // --- MAP ( netuid ) --> tao_in_emission | Returns the amount of tao emitted into this subent on the last block.
907
907
pub type SubnetTaoInEmission < T : Config > =
908
908
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
909
- #[ pallet:: storage] // --- DMAP ( netuid ) --> alpha_sell_per_block | Alpha sold per block.
909
+ #[ pallet:: storage] // --- MAP ( netuid ) --> alpha_sell_per_block | Alpha sold per block.
910
910
pub type SubnetAlphaEmissionSell < T : Config > =
911
911
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
912
- #[ pallet:: storage] // --- DMAP ( netuid ) --> total_stake_at_moment_of_subnet_registration
912
+ #[ pallet:: storage] // --- MAP ( netuid ) --> total_stake_at_moment_of_subnet_registration
913
913
pub type TotalStakeAtDynamic < T : Config > =
914
914
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
915
- #[ pallet:: storage] // --- DMAP ( netuid ) --> alpha_supply_in_pool | Returns the amount of alpha in the subnet .
915
+ #[ pallet:: storage] // --- MAP ( netuid ) --> alpha_supply_in_pool | Returns the amount of alpha in the pool .
916
916
pub type SubnetAlphaIn < T : Config > =
917
917
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
918
- #[ pallet:: storage] // --- DMAP ( netuid ) --> alpha_supply_in_subnet | Returns the amount of alpha in the subnet.
918
+ #[ pallet:: storage] // --- MAP ( netuid ) --> alpha_supply_in_subnet | Returns the amount of alpha in the subnet.
919
919
pub type SubnetAlphaOut < T : Config > =
920
920
StorageMap < _ , Identity , u16 , u64 , ValueQuery , DefaultZeroU64 < T > > ;
921
- #[ pallet:: storage] // --- DMAP ( cold ) --> Vec<hot> | Maps coldkey to hotkeys that stake to it
921
+ #[ pallet:: storage] // --- MAP ( cold ) --> Vec<hot> | Maps coldkey to hotkeys that stake to it
922
922
pub type StakingHotkeys < T : Config > =
923
923
StorageMap < _ , Blake2_128Concat , T :: AccountId , Vec < T :: AccountId > , ValueQuery > ;
924
924
#[ pallet:: storage] // --- MAP ( cold ) --> Vec<hot> | Returns the vector of hotkeys controlled by this coldkey.
@@ -975,10 +975,10 @@ pub mod pallet {
975
975
U64F64 , // Shares
976
976
ValueQuery ,
977
977
> ;
978
- #[ pallet:: storage] // --- DMAP ( netuid ) --> token_symbol | Returns the token symbol for a subnet.
978
+ #[ pallet:: storage] // --- MAP ( netuid ) --> token_symbol | Returns the token symbol for a subnet.
979
979
pub type TokenSymbol < T : Config > =
980
980
StorageMap < _ , Identity , u16 , Vec < u8 > , ValueQuery , DefaultUnicodeVecU8 < T > > ;
981
- #[ pallet:: storage] // --- DMAP ( netuid ) --> subnet_name | Returns the name of the subnet.
981
+ #[ pallet:: storage] // --- MAP ( netuid ) --> subnet_name | Returns the name of the subnet.
982
982
pub type SubnetName < T : Config > =
983
983
StorageMap < _ , Identity , u16 , Vec < u8 > , ValueQuery , DefaultUnicodeVecU8 < T > > ;
984
984
@@ -1279,49 +1279,49 @@ pub mod pallet {
1279
1279
pub type Keys < T : Config > =
1280
1280
StorageDoubleMap < _ , Identity , u16 , Identity , u16 , T :: AccountId , ValueQuery , DefaultKey < T > > ;
1281
1281
#[ pallet:: storage]
1282
- /// --- DMAP ( netuid ) --> (hotkey, se, ve)
1282
+ /// --- MAP ( netuid ) --> (hotkey, se, ve)
1283
1283
pub type LoadedEmission < T : Config > =
1284
1284
StorageMap < _ , Identity , u16 , Vec < ( T :: AccountId , u64 , u64 ) > , OptionQuery > ;
1285
1285
#[ pallet:: storage]
1286
- /// --- DMAP ( netuid ) --> active
1286
+ /// --- MAP ( netuid ) --> active
1287
1287
pub type Active < T : Config > =
1288
1288
StorageMap < _ , Identity , u16 , Vec < bool > , ValueQuery , EmptyBoolVec < T > > ;
1289
1289
#[ pallet:: storage]
1290
- /// --- DMAP ( netuid ) --> rank
1290
+ /// --- MAP ( netuid ) --> rank
1291
1291
pub type Rank < T : Config > = StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1292
1292
#[ pallet:: storage]
1293
- /// --- DMAP ( netuid ) --> trust
1293
+ /// --- MAP ( netuid ) --> trust
1294
1294
pub type Trust < T : Config > = StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1295
1295
#[ pallet:: storage]
1296
- /// --- DMAP ( netuid ) --> consensus
1296
+ /// --- MAP ( netuid ) --> consensus
1297
1297
pub type Consensus < T : Config > =
1298
1298
StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1299
1299
#[ pallet:: storage]
1300
- /// --- DMAP ( netuid ) --> incentive
1300
+ /// --- MAP ( netuid ) --> incentive
1301
1301
pub type Incentive < T : Config > =
1302
1302
StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1303
1303
#[ pallet:: storage]
1304
- /// --- DMAP ( netuid ) --> dividends
1304
+ /// --- MAP ( netuid ) --> dividends
1305
1305
pub type Dividends < T : Config > =
1306
1306
StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1307
1307
#[ pallet:: storage]
1308
- /// --- DMAP ( netuid ) --> emission
1308
+ /// --- MAP ( netuid ) --> emission
1309
1309
pub type Emission < T : Config > =
1310
1310
StorageMap < _ , Identity , u16 , Vec < u64 > , ValueQuery , EmptyU64Vec < T > > ;
1311
1311
#[ pallet:: storage]
1312
- /// --- DMAP ( netuid ) --> last_update
1312
+ /// --- MAP ( netuid ) --> last_update
1313
1313
pub type LastUpdate < T : Config > =
1314
1314
StorageMap < _ , Identity , u16 , Vec < u64 > , ValueQuery , EmptyU64Vec < T > > ;
1315
1315
#[ pallet:: storage]
1316
- /// --- DMAP ( netuid ) --> validator_trust
1316
+ /// --- MAP ( netuid ) --> validator_trust
1317
1317
pub type ValidatorTrust < T : Config > =
1318
1318
StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1319
1319
#[ pallet:: storage]
1320
- /// --- DMAP ( netuid ) --> pruning_scores
1320
+ /// --- MAP ( netuid ) --> pruning_scores
1321
1321
pub type PruningScores < T : Config > =
1322
1322
StorageMap < _ , Identity , u16 , Vec < u16 > , ValueQuery , EmptyU16Vec < T > > ;
1323
1323
#[ pallet:: storage]
1324
- /// --- DMAP ( netuid ) --> validator_permit
1324
+ /// --- MAP ( netuid ) --> validator_permit
1325
1325
pub type ValidatorPermit < T : Config > =
1326
1326
StorageMap < _ , Identity , u16 , Vec < bool > , ValueQuery , EmptyBoolVec < T > > ;
1327
1327
#[ pallet:: storage]
0 commit comments