We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Within caliper-local-client.js the await cb.end(); is on the wrong line ... it needs to occur before the context is released ...
caliper-local-client.js
await cb.end();
Proposed fix is to use this snippet instead:
// Clean up await rateController.end(); await cb.end(); await this.blockchain.releaseContext(this.context); this.clearUpdateInter(txUpdateInter);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Within
caliper-local-client.js
theawait cb.end();
is on the wrong line ... it needs to occur before the context is released ...Proposed fix is to use this snippet instead:
The text was updated successfully, but these errors were encountered: