pub type BatchTxHash<T: Config> = StorageMap<_GeneratedPrefixForStorageBatchTxHash<T>, Blake2_128Concat, BatchId, Hash, OptionQuery>;
Expand description
TxHash of the batch executed.
It can None
either if the BatchExecuted event was not received or it was received but tx_hash was None
.
Storage type is [StorageMap
] with key type BatchId
and value type TxHash
.
Aliased Typeยง
struct BatchTxHash<T: Config>(/* private fields */);