Skip to content

Commit

Permalink
v1.4.36-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
asiaziola committed Aug 12, 2024
1 parent fc19416 commit fad125b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "warp-contracts",
"version": "1.4.36-beta.6",
"version": "1.4.36-beta.8",
"description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/contract/states/ContractInteractionState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ export class ContractInteractionState implements InteractionState {
}
});
const doStoreJsonBenchmark = Benchmark.measure();
await this.doStoreJson(latestState, interaction, forceStore);
this.doStoreJson(latestState, interaction, forceStore).then();
doStoreJsonBenchmark.stop();
this.logger.info('doStoreJsonBenchmark', doStoreJsonBenchmark.elapsed());
const commitKvsBenchmark = Benchmark.measure();
await this.commitKVs();
commitKvsBenchmark.stop();
this.logger.info('commitKvs', doStoreJsonBenchmark.elapsed());
this.logger.info('commitKvs', commitKvsBenchmark.elapsed());
} finally {
this.reset();
}
Expand Down

0 comments on commit fad125b

Please sign in to comment.