pub type ShardMembers<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageShardMembers<T>, Blake2_128Concat, ShardId, Blake2_128Concat, AccountId, MemberStatus, OptionQuery>;
Expand description
Double map storing the MemberStatus
of each AccountId
in a specific ShardId.
Storage type is [StorageDoubleMap
] with key1 type ShardId, key2 type AccountId and value type MemberStatus.
Aliased Typeยง
struct ShardMembers<T: Config>(/* private fields */);