pub type WithWitness<WitnessData, Inner = NoParams> = CheckState<Witness<WitnessData>, Inner>;
Expand description
The operation implementation must check if the given witness represents the correct state of the asset. If so, the operation must act according to the inner strategy.
Aliased Type§
struct WithWitness<WitnessData, Inner = NoParams>(pub WitnessData, pub Inner);
Fields§
§0: WitnessData
§1: Inner