From 6422fc36ceed657e3f222baec10b3a33e07b6d8a Mon Sep 17 00:00:00 2001 From: GeorgeLindsell Date: Fri, 14 Jul 2017 15:39:54 +0100 Subject: [PATCH] [FAB-5311] Fix spelling error Fix spelling error in instantiate-chaincode.js Fix Issue # 5311. Change-Id: Ib8654e2d12a6e3d138406d0bb8738e37ebee90d1 Signed-off-by: GeorgeLindsell --- balance-transfer/app/instantiate-chaincode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/balance-transfer/app/instantiate-chaincode.js b/balance-transfer/app/instantiate-chaincode.js index 199f139e34..f305b11447 100644 --- a/balance-transfer/app/instantiate-chaincode.js +++ b/balance-transfer/app/instantiate-chaincode.js @@ -145,7 +145,7 @@ var instantiateChaincode = function(channelName, chaincodeName, chaincodeVersion }).then((response) => { if (response.status === 'SUCCESS') { logger.info('Successfully sent transaction to the orderer.'); - return 'Chaincode Instantiateion is SUCCESS'; + return 'Chaincode Instantiation is SUCCESS'; } else { logger.error('Failed to order the transaction. Error code: ' + response.status); return 'Failed to order the transaction. Error code: ' + response.status;