pub type NextWithdrawalSequence<T: Config> = StorageMap<_GeneratedPrefixForStorageNextWithdrawalSequence<T>, Blake2_128Concat, T::AccountId, u64, ValueQuery>;
Expand description
Stores the next withdrawal sequence number for each account.
Storage type is [StorageMap
] with key type T :: AccountId
and value type u64
.
Aliased Typeยง
struct NextWithdrawalSequence<T: Config>(/* private fields */);