caliper GitHub
| PR #1138 | Allow specification of custom EOA's and nonces |
| Proposes a solution to #1135 , namely by allowing users to set request.sender.privateKey and request.sender.nonce. |
Created At 2021-04-27 08:06:22 +0000 UTC
| PR #1136 | Fixed link to Fabric connector configuration for docs v0.4.2 for Caliper website homepage |
| Signed-off-by: Aastha Bist <abist119@gmail.com> ## Checklist - [ ] A link to the issue/user story that the pull request relates to - [x] How to recreate the problem without the fix - The link to Hyperledger Fabric configuration on [https://hyperledger.github.io/caliper/](https://hyperledger.github.io/caliper/) gives a 404 error on being clicked - [ ] Design of the fix - [ ] How to prove that the fix works - [ ] Automated tests that prove the fix keeps on working - [ ] Documentation - any JSDoc, website, or Stackoverflow answers? ## Design of the fix The current documentation release v0.4.2 is the one being referenced so I kept the link for the new Fabric confic docs instead of the previous broken link. |
Created At 2021-04-26 18:43:33 +0000 UTC
| PR #1135 | Resolve issue in which only first round would be docker-monitored |
| There is an issue that docker containers are only monitored during the first round of a multi-round benchmark as described in issue #1134. The problem is caused by the fact that the `stop()` command sets the `this.containers` property to the empty array `[]`, while it expects a `null` value to (re)set the containers list. By setting this to `if (!this.containers || this.containers.length == 0)`, we account for both cases. Resolves #1134 |
Created At 2021-04-23 09:30:31 +0000 UTC