|
@ -1543,7 +1543,6 @@ WalletService.prototype.createTxLegacy = function(opts, cb) { |
|
|
* @param {string} opts.message - A message to attach to this transaction. |
|
|
* @param {string} opts.message - A message to attach to this transaction. |
|
|
* @param {Array} opts.inputs - Optional. Inputs for this TX |
|
|
* @param {Array} opts.inputs - Optional. Inputs for this TX |
|
|
* @param {string} opts.feePerKb - The fee per kB to use for this TX. |
|
|
* @param {string} opts.feePerKb - The fee per kB to use for this TX. |
|
|
* @param {string} opts.feeLevel - Optional. Specify the fee level used to compute feePerKb for this txp. |
|
|
|
|
|
* @param {string} opts.payProUrl - Optional. Paypro URL for peers to verify TX |
|
|
* @param {string} opts.payProUrl - Optional. Paypro URL for peers to verify TX |
|
|
* @param {string} opts.excludeUnconfirmedUtxos[=false] - Optional. Do not use UTXOs of unconfirmed transactions as inputs |
|
|
* @param {string} opts.excludeUnconfirmedUtxos[=false] - Optional. Do not use UTXOs of unconfirmed transactions as inputs |
|
|
* @param {string} opts.validateOutputs[=true] - Optional. Perform validation on outputs. |
|
|
* @param {string} opts.validateOutputs[=true] - Optional. Perform validation on outputs. |
|
@ -1582,7 +1581,6 @@ WalletService.prototype.createTx = function(opts, cb) { |
|
|
message: opts.message, |
|
|
message: opts.message, |
|
|
changeAddress: wallet.createAddress(true), |
|
|
changeAddress: wallet.createAddress(true), |
|
|
feePerKb: opts.feePerKb, |
|
|
feePerKb: opts.feePerKb, |
|
|
feeLevel: opts.feeLevel, |
|
|
|
|
|
payProUrl: opts.payProUrl, |
|
|
payProUrl: opts.payProUrl, |
|
|
walletM: wallet.m, |
|
|
walletM: wallet.m, |
|
|
walletN: wallet.n, |
|
|
walletN: wallet.n, |
|
|