From b81624480a75781d8332fafd3b413f6b90826660 Mon Sep 17 00:00:00 2001 From: eordano Date: Tue, 24 Feb 2015 16:32:37 -0300 Subject: [PATCH] transaction: Fix verbosity of jsdocs --- lib/transaction/transaction.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/lib/transaction/transaction.js b/lib/transaction/transaction.js index cb9d770..22f4bfa 100644 --- a/lib/transaction/transaction.js +++ b/lib/transaction/transaction.js @@ -134,12 +134,7 @@ Transaction.prototype.uncheckedSerialize = Transaction.prototype.toString = func * Retrieve a hexa string that can be used with bitcoind's CLI interface * (decoderawtransaction, sendrawtransaction) * - * @param {Object} opts allows to skip certain tests: - * * `disableSmallFees`: disable checking for fees that are too small - * * `disableLargeFees`: disable checking for fees that are too large - * * `disableIsFullySigned`: disable checking if all inputs are fully signed - * * `disableDustOutputs`: disable checking if there are no outputs that are dust amounts - * * `disableMoreOutputThanInput`: disable checking if the transaction spends more bitcoins than the sum of the input amounts + * @param {Object} opts allows to skip certain tests. {@see Transaction#serialize} * @return {string} */ Transaction.prototype.checkedSerialize = function(opts) { @@ -153,12 +148,7 @@ Transaction.prototype.checkedSerialize = function(opts) { /** * Retrieve a possible error that could appear when trying to serialize and broadcast this transaction * - * @param {Object} opts allows to skip certain tests: - * * `disableSmallFees`: disable checking for fees that are too small - * * `disableLargeFees`: disable checking for fees that are too large - * * `disableIsFullySigned`: disable checking if all inputs are fully signed - * * `disableDustOutputs`: disable checking if there are no outputs that are dust amounts - * * `disableMoreOutputThanInput`: disable checking if the transaction spends more bitcoins than the sum of the input amounts + * @param {Object} opts allows to skip certain tests. {@see Transaction#serialize} * @return {bitcore.Error} */ Transaction.prototype.getSerializationError = function(opts) {