chore: code review changes

This commit is contained in:
ppedziwiatr
2022-02-21 14:15:19 +01:00
committed by Piotr Pędziwiatr
parent 97ce0a9273
commit 0e4d896d8e
6 changed files with 17 additions and 20 deletions

View File

@@ -89,9 +89,6 @@ export class WasmContractHandlerApi<State> implements HandlerApi<State> {
const resultPtr = this.wasmExports.handle(actionPtr);
const result = this.wasmExports.__getString(resultPtr);
this.logger.info("Result", result);
this.logger.info("State", this.doGetCurrentState());
return JSON.parse(result);
}