mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Balance transfer fails to install Chaincode since there is a undeclared variable "tx_id". However, "tx_id" is not required in ChaincodeInstallRequest. This CR removes the line getting transactionId to execute installChaincode correctly. Change-Id: Ia62844172ceecd84fa9a9f2e40e804d1f7a7499b Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
88 lines
3.1 KiB
JavaScript
88 lines
3.1 KiB
JavaScript
/**
|
|
* Copyright 2017 IBM All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
'use strict';
|
|
var util = require('util');
|
|
var helper = require('./helper.js');
|
|
var logger = helper.getLogger('install-chaincode');
|
|
|
|
var installChaincode = async function(peers, chaincodeName, chaincodePath,
|
|
chaincodeVersion, chaincodeType, username, org_name) {
|
|
logger.debug('\n\n============ Install chaincode on organizations ============\n');
|
|
helper.setupChaincodeDeploy();
|
|
let error_message = null;
|
|
try {
|
|
logger.info('Calling peers in organization "%s" to join the channel', org_name);
|
|
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
|
|
var request = {
|
|
targets: peers,
|
|
chaincodePath: chaincodePath,
|
|
chaincodeId: chaincodeName,
|
|
chaincodeVersion: chaincodeVersion,
|
|
chaincodeType: chaincodeType
|
|
};
|
|
let results = await client.installChaincode(request);
|
|
// the returned object has both the endorsement results
|
|
// and the actual proposal, the proposal will be needed
|
|
// later when we send a transaction to the orederer
|
|
var proposalResponses = results[0];
|
|
var proposal = results[1];
|
|
|
|
// lets have a look at the responses to see if they are
|
|
// all good, if good they will also include signatures
|
|
// required to be committed
|
|
var all_good = true;
|
|
for (var i in proposalResponses) {
|
|
let one_good = false;
|
|
if (proposalResponses && proposalResponses[i].response &&
|
|
proposalResponses[i].response.status === 200) {
|
|
one_good = true;
|
|
logger.info('install proposal was good');
|
|
} else {
|
|
logger.error('install proposal was bad %j',proposalResponses.toJSON());
|
|
}
|
|
all_good = all_good & one_good;
|
|
}
|
|
if (all_good) {
|
|
logger.info('Successfully sent install Proposal and received ProposalResponse');
|
|
} else {
|
|
error_message = 'Failed to send install Proposal or receive valid response. Response null or status is not 200'
|
|
logger.error(error_message);
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to install due to error: ' + error.stack ? error.stack : error);
|
|
error_message = error.toString();
|
|
}
|
|
|
|
if (!error_message) {
|
|
let message = util.format('Successfully installed chaincode');
|
|
logger.info(message);
|
|
// build a response to send back to the REST caller
|
|
let response = {
|
|
success: true,
|
|
message: message
|
|
};
|
|
return response;
|
|
} else {
|
|
let message = util.format('Failed to install due to:%s',error_message);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
};
|
|
exports.installChaincode = installChaincode;
|