pub type Pending<T: Config> = CountedStorageMap<_GeneratedPrefixForStoragePending<T>, Identity, u32, (Transaction, TransactionStatus, Receipt), OptionQuery>;
Expand description
Mapping from transaction index to transaction in the current building block.
Storage type is [CountedStorageMap
] with key type u32 and value type (Transaction, TransactionStatus, Receipt).
Aliased Typeยง
struct Pending<T: Config>(/* private fields */);