Type Alias pallet_order_book::pallet::UserOrders
source · pub type UserOrders<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageUserOrders<T>, Twox64Concat, T::AccountId, Twox64Concat, T::OrderIdNonce, (), ResultQuery<Error<T>>, __Frame_Internal_GetUserOrdersResult>;
Expand description
Map of orders for a particular user Used to query orders for a particular user using the account id of the user as prefix
Storage type is [StorageDoubleMap
] with key1 type T :: AccountId, key2 type T :: OrderIdNonce and value type ().
Aliased Type§
struct UserOrders<T: Config>(/* private fields */);