Type Alias ValidateTxPriority

Source
pub type ValidateTxPriority<T: Config> = StorageValue<_GeneratedPrefixForStorageValidateTxPriority<T>, TransactionPriority, ValueQuery>;
Expand description

Transaction priority for the Pallet::validate extrinsic.

Used because validate is an unsigned extrinsic that carries a signed payload, rather than relying on a conventional signed origin.

This extrinsic is propagated to other peers and participates in normal transaction pool ordering, so its priority directly affects inclusion and ordering behavior.

Storage type is [StorageValue] with value type TransactionPriority.

Aliased Typeยง

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