Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yoozo committed Oct 22, 2024
1 parent cce5060 commit 85f227c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"build": "rm -rf dist && tsc -b",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nodemon",
"start:prod": "node dist/main",
"start:dev": "TZ=utc nodemon",
"start:prod": "TZ=utc node dist/main",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-near\" --release-prefix=\"node-near/\""
},
"homepage": "https://github.com/subquery/subql",
Expand Down
2 changes: 0 additions & 2 deletions packages/node/src/indexer/fetch.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class FetchService extends BaseFetchService<
private apiService: ApiService,
nodeConfig: NodeConfig,
@Inject('IProjectService') projectService: ProjectService,
@Inject('ISubqueryProject') project: SubqueryProject,
@Inject('IBlockDispatcher')
blockDispatcher: INearBlockDispatcher,
dictionaryService: NearDictionaryService,
Expand All @@ -52,7 +51,6 @@ export class FetchService extends BaseFetchService<
super(
nodeConfig,
projectService,
project.network,
blockDispatcher,
dictionaryService,
eventEmitter,
Expand Down

0 comments on commit 85f227c

Please sign in to comment.