git.delta.rocks / unique-network / refs/commits / 629591d9aa58

difftreelog

fix use option vec for properties rpc

Daniel Shiposha2022-09-26parent: #a667655.patch.diff
in: master

1 file changed

modifiedtests/src/interfaces/unique/definitions.tsdiffbeforeafterboth
2424
25const collectionParam = {name: 'collection', type: 'u32'};25const collectionParam = {name: 'collection', type: 'u32'};
26const tokenParam = {name: 'tokenId', type: 'u32'};26const tokenParam = {name: 'tokenId', type: 'u32'};
27const propertyKeysParam = {name: 'propertyKeys', type: 'Vec<String>', isOptional: true};27const propertyKeysParam = {name: 'propertyKeys', type: 'Option<Vec<String>>', isOptional: true};
28const crossAccountParam = (name = 'account') => ({name, type: CROSS_ACCOUNT_ID_TYPE});28const crossAccountParam = (name = 'account') => ({name, type: CROSS_ACCOUNT_ID_TYPE});
29const atParam = {name: 'at', type: 'Hash', isOptional: true};29const atParam = {name: 'at', type: 'Hash', isOptional: true};
3030