Skip to content

Commit

Permalink
Change checkcommitreadiness.go
Browse files Browse the repository at this point in the history
  • Loading branch information
dviejokfs committed Sep 28, 2022
1 parent 36c7c10 commit 4a7b356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubectl-hlf/cmd/chaincode/checkcommitreadiness.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (c *queryCheckCommitReadiness) run(out io.Writer) error {
data := [][]string{}
for mspID, approved := range chaincode.Approvals {
isApproved := "false"
if !approved {
if approved {
isApproved = "true"
}
data = append(data, []string{mspID, isApproved})
Expand Down

0 comments on commit 4a7b356

Please sign in to comment.