--- a/primitives/nft/src/lib.rs +++ b/primitives/nft/src/lib.rs @@ -257,10 +257,10 @@ #[derivative(Debug)] pub struct CreateNftData { #[serde(with = "bounded_serde")] - #[derivative(Debug="ignore")] + #[derivative(Debug = "ignore")] pub const_data: BoundedVec, #[serde(with = "bounded_serde")] - #[derivative(Debug="ignore")] + #[derivative(Debug = "ignore")] pub variable_data: BoundedVec, } @@ -277,10 +277,10 @@ #[derivative(Debug)] pub struct CreateReFungibleData { #[serde(with = "bounded_serde")] - #[derivative(Debug="ignore")] + #[derivative(Debug = "ignore")] pub const_data: BoundedVec, #[serde(with = "bounded_serde")] - #[derivative(Debug="ignore")] + #[derivative(Debug = "ignore")] pub variable_data: BoundedVec, pub pieces: u128, }