Adds some debug logging (#837)

This commit is contained in:
Bastian Köcher
2020-02-11 22:01:45 +01:00
committed by GitHub
parent 295151338d
commit 2eb7621759
3 changed files with 12 additions and 3 deletions
+2 -2
View File
@@ -81,9 +81,9 @@ pub struct ValidationResult {
/// Unique identifier of a parachain.
#[derive(
Clone, CompactAs, Copy, Decode, Default, Encode, Eq,
Hash, Ord, PartialEq, PartialOrd, RuntimeDebug
Hash, Ord, PartialEq, PartialOrd, RuntimeDebug,
)]
#[cfg_attr(feature = "std", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "std", derive(serde::Serialize, serde::Deserialize, derive_more::Display))]
pub struct Id(u32);
impl TypeId for Id {