pub type NewValidationCode<T: Config> = StorageValue<_GeneratedPrefixForStorageNewValidationCode<T>, Vec<u8>, OptionQuery>;
Expand description

Validation code that is set by the parachain and is to be communicated to collator and consequently the relay-chain.

This will be cleared in on_initialize of each new block if no other pallet already set the value.

Storage type is [StorageValue] with value type Vec < u8 >.

Aliased Type§

struct NewValidationCode<T: Config>(/* private fields */);