Skip to content

Commit 5a974a4

Browse files
committed
[FAB-7533] Fix typo in balance-transfer sample
Trivial fix of a typo which causes the app to crash Change-Id: I55bb6a0e971d21adb0bd50f450571d6698686c9a Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
1 parent 038c496 commit 5a974a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

balance-transfer/app/invoke-transaction.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var invokeChaincode = async function(peerNames, channelName, chaincodeName, fcn,
100100
eh.unregisterTxEvent(tx_id_string);
101101

102102
if (code !== 'VALID') {
103-
let message = until.format('The invoke chaincode transaction was invalid, code:%s',code);
103+
let message = util.format('The invoke chaincode transaction was invalid, code:%s',code);
104104
logger.error(message);
105105
reject(new Error(message));
106106
} else {

0 commit comments

Comments
 (0)