Skip to content

Commit

Permalink
Merge pull request #3589 from OriginTrail/fix/new-fixes-for-everything
Browse files Browse the repository at this point in the history
Sigma 13 fixes
  • Loading branch information
Mihajlo-Pavlovic authored Dec 24, 2024
2 parents 35070f4 + c3765cf commit 77cacec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "origintrail_node",
"version": "8.0.0-sigma.12",
"version": "8.0.0-sigma.13",
"description": "OTNode V8",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -81,7 +81,7 @@
"axios": "^1.6.0",
"cors": "^2.8.5",
"deep-extend": "^0.6.0",
"dkg-evm-module": "^8.0.0-sigma.2",
"dkg-evm-module": "^8.0.0-sigma.3",
"dotenv": "^16.0.1",
"ethers": "^5.7.2",
"express": "^4.18.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class ValidateAssertionMetadataCommand extends Command {
super(ctx);
this.operationIdService = ctx.operationIdService;
this.blockchainModuleManager = ctx.blockchainModuleManager;
this.dataService = ctx.dataService;
}

async execute(command) {
Expand Down
2 changes: 1 addition & 1 deletion src/service/triple-store-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class TripleStoreService {

throw new Error(
`Failed to store Knowledge Collection with the UAL: ${knowledgeCollectionUAL} ` +
`to the Triple Store's ${repository} repository after maximum retries.`,
`to the Triple Store's ${repository} repository after maximum retries. Error ${error}`,
);
}
}
Expand Down

0 comments on commit 77cacec

Please sign in to comment.