From 58240b296645d86e864a93ed6dca1bcd76979d76 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 30 May 2022 12:08:54 +0000 Subject: [PATCH] fix: don't write same fields names in Property --- --- a/pallets/nonfungible/src/common.rs +++ b/pallets/nonfungible/src/common.rs @@ -416,8 +416,8 @@ properties .into_iter() .map(|(key, value)| Property { - key: key, - value: value, + key, + value, }) .collect() }) -- gitstuff