From 055cc66f716b8596aa2d910a9bd4813ee77d7d4e Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 22 Jul 2022 08:36:41 +0000 Subject: [PATCH] test: fix refungible construction --- --- a/runtime/tests/src/tests.rs +++ b/runtime/tests/src/tests.rs @@ -64,6 +64,12 @@ CreateReFungibleData { const_data: vec![1, 2, 3].try_into().unwrap(), pieces: 1023, + properties: vec![Property { + key: b"test-prop".to_vec().try_into().unwrap(), + value: b"test-nft-prop".to_vec().try_into().unwrap(), + }] + .try_into() + .unwrap(), } } -- gitstuff