Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #28 from SaitoTech/develop
Browse files Browse the repository at this point in the history
wasm bug fixing
  • Loading branch information
SankaD authored Jul 25, 2023
2 parents 4c7f6ef + a21d763 commit 3e1fc16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saito-js",
"version": "0.0.25",
"version": "0.0.26",
"description": "js wrappings around saito-core using wasm",
"scripts": {
"test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha --require ts-node/register 'tests/**/*.ts'",
Expand Down
3 changes: 3 additions & 0 deletions saito.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ export default class Saito {
await Saito.getLibInstance().initialize(configStr, privateKey);

console.log("saito initialized");
}

public start() {
console.log("starting saito threads");
let intervalTime = 100;
Saito.getInstance().call_timed_functions(intervalTime, Date.now() - intervalTime);
}
Expand Down

0 comments on commit 3e1fc16

Please sign in to comment.