pub type LostTips<T: Config> = StorageMap<_GeneratedPrefixForStorageLostTips<T>, Blake2_128Concat, AccountIdOf<T>, u128, ValueQuery>;
Expand description
Relayer reward tips that were paid by the user to incentivize the processing of their message, but then could not be added to their message reward (e.g. the nonce was already processed or their order could not be found). Capturing the lost tips here supports implementing a recovery method in the future.
Storage type is [StorageMap
] with key type AccountIdOf < T >
and value type u128
.
Aliased Type§
struct LostTips<T: Config>(/* private fields */);