diff --git a/lib/http/wallet.js b/lib/http/wallet.js index 8111ff99..b107681b 100644 --- a/lib/http/wallet.js +++ b/lib/http/wallet.js @@ -248,8 +248,8 @@ HTTPWallet.prototype.zap = function zap(account, age) { * @see Wallet#createTX */ -HTTPWallet.prototype.createTX = function createTX(options, outputs) { - return this.client.createTX(this.id, options, outputs); +HTTPWallet.prototype.createTX = function createTX(options) { + return this.client.createTX(this.id, options); }; /**