From 1170923f8685b9acced8f355d3fa4566ef4e4260 Mon Sep 17 00:00:00 2001 From: rxl Date: Thu, 19 Jun 2014 17:52:54 -0700 Subject: [PATCH] fix grammar in 'not enough unspent tx outputs' error in tx builder --- lib/TransactionBuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TransactionBuilder.js b/lib/TransactionBuilder.js index 006d999..1ed6a45 100644 --- a/lib/TransactionBuilder.js +++ b/lib/TransactionBuilder.js @@ -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;