Skip to content

Commit 67b476d

Browse files
committed
fix: Fixes for develop network with Base Messenger
1 parent 8db18c3 commit 67b476d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export enum DEPLOYMENT_TAGS {
6060
export enum USE_CASES {
6161
STAKING_EFFICIENCY = 'staking-efficiency',
6262
STAKING_EFFICIENCY_ALT = 'staking-efficiency-alt',
63-
BASE_MESSENGER = 'dummy-use-case',
63+
BASE_MESSENGER = 'base-messenger',
6464
}
6565

6666
export enum NETWORKS {

services/ipfs/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.5"
22
services:
33
ipfs-service:
44
container_name: ipfs-service
5-
image: ipfs/go-ipfs:v0.4.23
5+
image: ipfs/go-ipfs:v0.10.0
66
ports:
77
- '5001:5001'
88
networks:

subtasks.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,9 @@ subtask(SUB_TASK_NAMES.STOP_LOCAL_GRAPH_NODE, undefined).setAction(async () => {
337337
cwd: path.join(`${appRoot.path}/services/graph-protocol/`),
338338
log: true,
339339
});
340-
fs.rmdirSync(`${appRoot.path}/services/graph-protocol/postgres`, {
340+
fs.rmSync(`${appRoot.path}/services/graph-protocol/postgres`, {
341341
recursive: true,
342+
force: true,
342343
});
343344
});
344345

@@ -374,7 +375,7 @@ subtask(SUB_TASK_NAMES.SETUP_DOCKER_COMPOSE, undefined).setAction(
374375
.readdirSync(`${appRoot.path}/services/chainlink-nodes/`)
375376
.filter((folder) => new RegExp(`${network.name}`).test(folder));
376377
for (let folder of folders) {
377-
fs.rmdirSync(`${appRoot.path}/services/chainlink-nodes/${folder}`, {
378+
fs.rmSync(`${appRoot.path}/services/chainlink-nodes/${folder}`, {
378379
recursive: true,
379380
});
380381
}

0 commit comments

Comments
 (0)