Skip to content

Commit

Permalink
[FAB-7533] Fix typo in balance-transfer sample
Browse files Browse the repository at this point in the history
Trivial fix of a typo which causes the app to
crash

Change-Id: I55bb6a0e971d21adb0bd50f450571d6698686c9a
Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
  • Loading branch information
mastersingh24 committed Jan 6, 2018
1 parent 038c496 commit 5a974a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balance-transfer/app/invoke-transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var invokeChaincode = async function(peerNames, channelName, chaincodeName, fcn,
eh.unregisterTxEvent(tx_id_string);

if (code !== 'VALID') {
let message = until.format('The invoke chaincode transaction was invalid, code:%s',code);
let message = util.format('The invoke chaincode transaction was invalid, code:%s',code);
logger.error(message);
reject(new Error(message));
} else {
Expand Down

0 comments on commit 5a974a4

Please sign in to comment.