improve language

Make the language more professional, and add a space after "txid" so that you
can easily copy+paste the txid.
This commit is contained in:
Ryan X. Charles 2014-05-09 11:28:35 -04:00
parent 7801f780f4
commit c4e3bf47fb
1 changed files with 1 additions and 1 deletions

View File

@ -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();