fix grammar in 'not enough unspent tx outputs' error in tx builder

This commit is contained in:
rxl 2014-06-19 17:52:54 -07:00
parent 43c4db3219
commit 1170923f86
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ TransactionBuilder.prototype._selectUnspent = function(neededAmountSat) {
} while (!fulfill && minConfirmationSteps.length);
if (!fulfill)
throw new Error('no enough unspent to fulfill totalNeededAmount [SAT]:' +
throw new Error('not enough unspent tx outputs to fulfill totalNeededAmount [SAT]:' +
neededAmountSat);
this.selectedUtxos = sel;