git.delta.rocks / unique-network / refs/commits / df9b2f8abb14

difftreelog

Fix error

Max Andreev2023-04-04parent: #67daa6f.patch.diff
in: master

6 files changed

modified.envdiffbeforeafterboth
1RUST_TOOLCHAIN=nightly-2022-11-151RUST_TOOLCHAIN=nightly-2022-11-15
2POLKADOT_BUILD_BRANCH=release-v0.9.372POLKADOT_BUILD_BRANCH=release-v0.9.37
3POLKADOT_LAUNCH_BRANCH=unique-network3POLKADOT_LAUNCH_BRANCH=unique-network
4RELAY_CHAIN_TYPE=westend4RELAY_CHAIN_TYPE=rococo
55
6POLKADOT_MAINNET_BRANCH=release-v0.9.376POLKADOT_MAINNET_BRANCH=release-v0.9.37
7STATEMINT_BUILD_BRANCH=release-parachains-v93707STATEMINT_BUILD_BRANCH=release-parachains-v9370
modifiedtests/src/benchmarks/mintFee/index.tsdiffbeforeafterboth
8import {Contract} from 'web3-eth-contract';8import {Contract} from 'web3-eth-contract';
9import {createObjectCsvWriter} from 'csv-writer';9import {createObjectCsvWriter} from 'csv-writer';
10import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES} from '../utils/common';10import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES} from '../utils/common';
11import {makeNames} from '../utils';11import {makeNames} from '../../util';
12import {ContractImports} from '../../eth/util/playgrounds/types';12import {ContractImports} from '../../eth/util/playgrounds/types';
1313
14const {dirname} = makeNames(import.meta.url);14const {dirname} = makeNames(import.meta.url);
modifiedtests/src/benchmarks/opsFee/index.tsdiffbeforeafterboth
7import {createObjectCsvWriter} from 'csv-writer';7import {createObjectCsvWriter} from 'csv-writer';
8import {FunctionFeeVM, IFunctionFee} from '../utils/types';8import {FunctionFeeVM, IFunctionFee} from '../utils/types';
9import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES, SUBS_PROPERTIES} from '../utils/common';9import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES, SUBS_PROPERTIES} from '../utils/common';
1010import {makeNames} from '../../util';
1111
12
13const {dirname} = makeNames(import.meta.url);
1214
13const main = async () => {15const main = async () => {
1416
modifiedtests/src/eth/util/index.tsdiffbeforeafterboth
59 }59 }
60 return account;60 return account;
61 };61 };
62 await code(helper, privateKey);62 return;
63 }63 }
64 finally {64 finally {
65 await helper.disconnect();65 await helper.disconnect();
modifiedtests/src/nesting/collectionProperties.test.tsdiffbeforeafterboth
235 itSub('Fails to set properties that exceed the limits', async ({helper}) => {235 itSub('Fails to set properties that exceed the limits', async ({helper}) => {
236 const collection = await helper[testSuite.mode].mintCollection(alice);236 const collection = await helper[testSuite.mode].mintCollection(alice);
237237
238 const spaceLimit = helper.getApi().consts.unique.maxCollectionPropertiesSize.toNumber();238 const spaceLimit = Number(helper.getApi().consts.unique.maxCollectionPropertiesSize);
239239
240 // Mute the general tx parsing error, too many bytes to process240 // Mute the general tx parsing error, too many bytes to process
241 {241 {
modifiedtests/src/util/index.tsdiffbeforeafterboth
57 }57 }
58 return account;58 return account;
59 };59 };
60 await code(helper, privateKey);60 return;
61 }61 }
62 finally {62 finally {
63 await helper.disconnect();63 await helper.disconnect();