From c4e3bf47fba6598ce436d003a3273d9d2000cc4b Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Fri, 9 May 2014 11:28:35 -0400 Subject: [PATCH] improve language Make the language more professional, and add a space after "txid" so that you can easily copy+paste the txid. --- js/controllers/transactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index fdb023799..f1ea1952e 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -47,7 +47,7 @@ angular.module('copay.transactions').controller('TransactionsController', w.sendTx(ntxid, function(txid) { console.log('[transactions.js.68:txid:] SENTTX CALLBACK',txid); //TODO $rootScope.flashMessage = txid - ? {type:'success', message: 'Transactions SENT! txid:' + txid} + ? {type:'success', message: 'Transaction broadcasted. txid: ' + txid} : {type:'error', message: 'There was an error sending the Transaction'} ; _updateTxs();