pub type DelegationNodes<T> = StorageMap<_GeneratedPrefixForStorageDelegationNodes<T>, Blake2_128Concat, DelegationNodeIdOf<T>, DelegationNodeOf<T>>;
Expand description

Delegation nodes stored on chain.

It maps from a node ID to the node details.

Storage type is [StorageMap] with key type DelegationNodeIdOf < T > and value type DelegationNodeOf < T >.

Aliased Type§

struct DelegationNodes<T>(/* private fields */);