Skip to content

Commit e712d88

Browse files
authored
fix: update default ports generated by CLI (#462)
* fix: update default ports generated by CLI * fix
1 parent e43e217 commit e712d88

File tree

6 files changed

+8
-40
lines changed

6 files changed

+8
-40
lines changed

.fluence/env.yaml

-9
This file was deleted.

.fluence/schemas/env.json

-28
This file was deleted.

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ node_modules/
99
dist/
1010
public/
1111
.DS_Store
12+
13+
.fluence/
14+
# so we have stable peer ids for tests
15+
!.fluence/provider-secrets.yaml
16+
provider.yaml

packages/@tests/aqua/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { wasm } from "./wasmb64.js";
2626

2727
const relay = {
2828
multiaddr:
29-
"/ip4/127.0.0.1/tcp/9991/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
29+
"/ip4/127.0.0.1/tcp/999/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
3030
peerId: "12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
3131
};
3232

packages/@tests/smoke/web/public/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Fluence, callAquaFunction } from "./js-client.min.js";
22

33
const relay = {
44
multiaddr:
5-
"/ip4/127.0.0.1/tcp/9991/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
5+
"/ip4/127.0.0.1/tcp/999/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
66
peerId: "12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
77
};
88

packages/core/js-client/src/clientPeer/__test__/connection.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
export const nodes = [
1818
{
1919
multiaddr:
20-
"/ip4/127.0.0.1/tcp/9991/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
20+
"/ip4/127.0.0.1/tcp/999/ws/p2p/12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
2121
peerId: "12D3KooWBbMuqJJZT7FTFN4fWg3k3ipUKx6KEy7pDy8mdorK5g5o",
2222
},
2323
] as const;

0 commit comments

Comments
 (0)