macro_rules! impl_outer_validate_unsigned {
(
impl ValidateUnsigned for $runtime:ident {
$( $module:ident )*
}
) => { ... };
}
Expand description
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
}
}