git.delta.rocks / unique-network / refs/commits / 253e15bbcbb5

difftreelog

feat(xcm-tests) sending is ready, receiving pending core functionality

Fahrrader2022-01-21parent: #1c8c05f.patch.diff
in: master

3 files changed

modifiedlaunch-config.jsondiffbeforeafterboth
40 "flags": [40 "flags": [
41 "-lparachain::candidate_validation=debug"41 "-lparachain::candidate_validation=debug"
42 ]42 ]
43 }43 },
44 {
45 "name": "eve",
46 "wsPort": 9888,
47 "rpcPort": 9887,
48 "port": 30888,
49 "flags": [
50 "-lparachain::candidate_validation=debug"
51 ]
52 }
44 ],53 ],
45 "genesis": {54 "genesis": {
46 "runtime": {55 "runtime": {
94 "balance": "1000000000000000000000",103 "balance": "1000000000000000000000",
95 "nodes": [104 "nodes": [
96 {105 {
97 "wsPort": 9988,106 "wsPort": 9946,
98 "port": 31200,107 "port": 31202,
99 "name": "alice",108 "name": "alice",
100 "flags": [109 "flags": [
101 "--rpc-cors=all",110 "--rpc-cors=all",
105 ]114 ]
106 }115 }
107 ]116 ]
108 }117 },
118 {
119 "bin": "../cumulus/target/release/polkadot-collator",
120 "id": "3000",
121 "chain": "statemint-dev",
122 "balance": "1000000000000000000000000",
123 "nodes": [
124 {
125 "wsPort": 9947,
126 "port": 31203,
127 "name": "alice",
128 "flags": [
129 "--rpc-cors=all",
130 "--unsafe-rpc-external",
131 "--unsafe-ws-external",
132 "-lxcm=trace"
133 ]
134 }
135 ]
136 }
109 ],137 ],
110 "simpleParachains": [],138 "simpleParachains": [],
111 "hrmpChannels": [139 "hrmpChannels": [
modifiedtests/package.jsondiffbeforeafterboth
64 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",64 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",
65 "testSetVariableMetadataSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setVariableMetadataSponsoringRateLimit.test.ts",65 "testSetVariableMetadataSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setVariableMetadataSponsoringRateLimit.test.ts",
66 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts",66 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts",
67 "testXcmTransfer": "mocha --timeout 9999999 -r ts-node/register ./**/xcmTransfer.test.ts",
67 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",68 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",
68 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",69 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",
69 "testEnableDisableTransfers": "mocha --timeout 9999999 -r ts-node/register ./**/enableDisableTransfer.test.ts",70 "testEnableDisableTransfers": "mocha --timeout 9999999 -r ts-node/register ./**/enableDisableTransfer.test.ts",
addedtests/src/xcmTransfer.test.tsdiffbeforeafterboth

no changes