From 9f266a8046e670fc77f34ca3c05b5d1f59120159 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Mon, 19 Jun 2023 16:26:17 +0200 Subject: [PATCH] fix: remove double Option wrapping for propertyKeys --- tests/src/interfaces/unique/definitions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/interfaces/unique/definitions.ts b/tests/src/interfaces/unique/definitions.ts index f3a098ca22..9f8bcc728f 100644 --- a/tests/src/interfaces/unique/definitions.ts +++ b/tests/src/interfaces/unique/definitions.ts @@ -24,7 +24,7 @@ const CROSS_ACCOUNT_ID_TYPE = 'PalletEvmAccountBasicCrossAccountIdRepr'; const collectionParam = {name: 'collection', type: 'u32'}; const tokenParam = {name: 'tokenId', type: 'u32'}; -const propertyKeysParam = {name: 'propertyKeys', type: 'Option>', isOptional: true}; +const propertyKeysParam = {name: 'propertyKeys', type: 'Vec', isOptional: true}; const crossAccountParam = (name = 'account') => ({name, type: CROSS_ACCOUNT_ID_TYPE}); const atParam = {name: 'at', type: 'Hash', isOptional: true};