1
2
3
4
5
6
7
8
9
10
// This trait represents compatibility trait

use parity_scale_codec::{Decode, Encode};

/// This is parity compatible pallet
pub trait ParityCmp: Decode + Encode {}

/// This is parallelize compatible pallet
#[cfg(feature = "std")]
pub trait ParallelCmp: Send + Sync {}