Skip to content

Commit

Permalink
Fix unresolved variable and remove comma
Browse files Browse the repository at this point in the history
Fix FAB-1471.

Change-Id: I8f586163e5c30b6c565f8bc4ab08e152234c03e6
Signed-off-by: grapebaba <[email protected]>
  • Loading branch information
GrapeBaBa committed Dec 22, 2016
1 parent 9c3e33f commit 129ca3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hfc-cop/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"crypto-asymmetric-key-algo": "ECDSA",
"crypto-hash-algo": "SHA2",
"crypto-keysize": 256,
"crypto-suite": "./impl/CryptoSuite_ECDSA_AES.js",
"crypto-suite": "./impl/CryptoSuite_ECDSA_AES.js"
}
2 changes: 1 addition & 1 deletion hfc-cop/lib/FabricCOPImpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var FabricCOPClient = class {
} else {
this._port = (connect_opts.protocol === 'http' ? 80 : 443);
}
this._ca = (connect_opts.ca) ? ca : null;
this._ca = (connect_opts.ca) ? connect_opts.ca : null;
this._baseAPI = '/api/v1/cfssl/';


Expand Down

0 comments on commit 129ca3c

Please sign in to comment.