Macro fabric_support::impl_outer_validate_unsigned[][src]

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

			-> fabric_support::unsigned::TransactionValidity {
pub struct Runtime;

fabric_support::impl_outer_validate_unsigned! {
	impl ValidateUnsigned for Runtime {
		Timestamp
	}
}