Skip to content

Commit

Permalink
Merge pull request #76 from ainize-team/release/1.0.3
Browse files Browse the repository at this point in the history
Upgrade version to 1.0.3
  • Loading branch information
yoojinko authored Nov 9, 2023
2 parents f1d7869 + ae32de6 commit d4d3076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ainize-team/ainize-sdk",
"version": "1.0.2",
"version": "1.0.3",
"main": "dist/ainize.js",
"types": "dist/ainize.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/serviceController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class ServiceController {
const responsePath = Path.app(serviceName).response(requesterAddress, requestKey.toString());
await this.handler.subscribe(responsePath, resolve);
const requestPath = Path.app(serviceName).request(requesterAddress, requestKey);
const requestOp = buildSetOperation("SET_VALUE", requestPath, {prompt: requestData});
const requestOp = buildSetOperation("SET_VALUE", requestPath, requestData);
const txBody = buildTxBody(requestOp);
await this.ain.sendTransaction(txBody);
return requestKey;
Expand Down

0 comments on commit d4d3076

Please sign in to comment.