[−][src]Macro frame_support::impl_outer_validate_unsigned
macro_rules! impl_outer_validate_unsigned { ( impl ValidateUnsigned for $runtime:ident { $( $module:ident )* } ) => { ... }; }
Implement ValidateUnsigned
for Runtime
.
All given modules need to implement ValidateUnsigned
.
Example
-> frame_support::unsigned::TransactionValidity { pub struct Runtime; frame_support::impl_outer_validate_unsigned! { impl ValidateUnsigned for Runtime { Timestamp } }