|
|
@ -1546,6 +1546,7 @@ WalletService.prototype.createTxLegacy = function(opts, cb) { |
|
|
|
* @param {Array} opts.inputs - Optional. Inputs for this TX |
|
|
|
* @param {string} opts.fee - Optional. Use an alternative fee for this TX (mutually exclusive with feePerKb) |
|
|
|
* @param {string} opts.feePerKb - Optional. Use an alternative fee per KB for this TX (mutually exclusive with fee) |
|
|
|
* @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.excludeUnconfirmedUtxos[=false] - Optional. Do not use UTXOs of unconfirmed transactions as inputs |
|
|
|
* @param {string} opts.validateOutputs[=true] - Optional. Perform validation on outputs. |
|
|
@ -1595,6 +1596,7 @@ WalletService.prototype.createTx = function(opts, cb) { |
|
|
|
changeAddress: wallet.createAddress(true), |
|
|
|
fee: opts.fee, |
|
|
|
feePerKb: opts.feePerKb, |
|
|
|
feeLevel: opts.feeLevel, |
|
|
|
payProUrl: opts.payProUrl, |
|
|
|
walletM: wallet.m, |
|
|
|
walletN: wallet.n, |
|
|
|