Skip to content

Commit

Permalink
change chaincode id in install/instantiate scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dshuffma-ibm committed Sep 28, 2017
1 parent 3b028d9 commit c222be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/install_chaincode.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var logger = new (winston.Logger)({

// --- Set Details Here --- //
var config_file = 'marbles_local.json'; //set config file name
var chaincode_id = 'marbles01'; //set desired chaincode id to identify this chaincode
var chaincode_id = 'marbles'; //set desired chaincode id to identify this chaincode
var chaincode_ver = 'v4'; //set desired chaincode version

// --- Use (optional) arguments if passed in --- //
Expand Down
2 changes: 1 addition & 1 deletion scripts/instantiate_chaincode.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var logger = new (winston.Logger)({

// --- Set Details Here --- //
var config_file = 'marbles_local.json'; //set config file name
var chaincode_id = 'marbles01'; //use same ID during the INSTALL proposal
var chaincode_id = 'marbles'; //use same ID during the INSTALL proposal
var chaincode_ver = 'v4'; //use same version during the INSTALL proposal

// --- Use (optional) arguments if passed in --- //
Expand Down

0 comments on commit c222be7

Please sign in to comment.