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