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

difftreelog

fix add --rpc-port flags to launch config

Yaroslav Bolyukin2021-07-26parent: #dc753ac.patch.diff
in: master

1 file changed

modifiedlaunch-config.jsondiffbeforeafterboth
6 {6 {
7 "name": "alice",7 "name": "alice",
8 "wsPort": 9844,8 "wsPort": 9844,
9 "rpcPort": 9843,
9 "port": 3044410 "port": 30444,
11 "flags": [
12 "--rpc-port=9843"
13 ]
10 },14 },
11 {15 {
12 "name": "bob",16 "name": "bob",
13 "wsPort": 9855,17 "wsPort": 9855,
18 "rpcPort": 9854,
14 "port": 3055519 "port": 30555,
20 "flags": [
21 "--rpc-port=9854"
22 ]
15 },23 },
16 {24 {
17 "name": "charlie",25 "name": "charlie",
18 "wsPort": 9866,26 "wsPort": 9866,
27 "rpcPort": 9865,
19 "port": 3066628 "port": 30666,
29 "flags": [
30 "--rpc-port=9865"
31 ]
20 },32 },
21 {33 {
22 "name": "dave",34 "name": "dave",
23 "wsPort": 9877,35 "wsPort": 9877,
36 "rpcPort": 9876,
24 "port": 3077737 "port": 30777,
38 "flags": [
39 "--rpc-port=9876"
40 ]
25 }41 }
26 ],42 ],
27 "genesis": {43 "genesis": {
45 "nodes": [61 "nodes": [
46 {62 {
47 "port": 31200,63 "port": 31200,
48 "wsPort": "9944",64 "wsPort": 9944,
65 "rpcPort": 9933,
49 "name": "alice",66 "name": "alice",
50 "flags": []67 "flags": [
68 "--rpc-cors=all",
69 "--rpc-port=9933"
70 ]
51 },71 },
52 {72 {
53 "port": 31201,73 "port": 31201,
54 "wsPort": "9945",74 "wsPort": 9945,
75 "rpcPort": 9934,
55 "name": "bob",76 "name": "bob",
56 "flags": []77 "flags": [
78 "--rpc-cors=all",
79 "--rpc-port=9934"
80 ]
57 }81 }
58 ]82 ]