pub type PendingDeposits<T: Config> = StorageDoubleMap<_GeneratedPrefixForStoragePendingDeposits<T>, Blake2_128Concat, AssetId, Blake2_128Concat, H160, U256, OptionQuery>;Expand description
Pending deposits for frozen assets, keyed by (asset_id, beneficiary). Deposits for the same (asset_id, beneficiary) accumulate via checked_add.
Storage type is [StorageDoubleMap] with key1 type AssetId, key2 type H160 and value type U256.
Aliased Typeยง
struct PendingDeposits<T: Config>(/* private fields */);