Skip to content

Commit

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

0 comments on commit 3238e24

Please sign in to comment.