From 629591d9aa58aab312c5d7e80a51e3f58f2a2149 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 26 Sep 2022 09:11:06 +0000 Subject: [PATCH] fix: use option vec for properties rpc --- --- a/tests/src/interfaces/unique/definitions.ts +++ b/tests/src/interfaces/unique/definitions.ts @@ -24,7 +24,7 @@ const collectionParam = {name: 'collection', type: 'u32'}; const tokenParam = {name: 'tokenId', type: 'u32'}; -const propertyKeysParam = {name: 'propertyKeys', type: 'Vec', isOptional: true}; +const propertyKeysParam = {name: 'propertyKeys', type: 'Option>', isOptional: true}; const crossAccountParam = (name = 'account') => ({name, type: CROSS_ACCOUNT_ID_TYPE}); const atParam = {name: 'at', type: 'Hash', isOptional: true}; -- gitstuff