From df52cbe6f9b4f625aaaeea240489fe21a92f0a19 Mon Sep 17 00:00:00 2001 From: Bucko Date: Wed, 30 Aug 2017 16:36:30 -0700 Subject: [PATCH 1/2] remove outputs from function signature --- lib/http/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/wallet.js b/lib/http/wallet.js index 8111ff99..cb94785d 100644 --- a/lib/http/wallet.js +++ b/lib/http/wallet.js @@ -249,7 +249,7 @@ HTTPWallet.prototype.zap = function zap(account, age) { */ HTTPWallet.prototype.createTX = function createTX(options, outputs) { - return this.client.createTX(this.id, options, outputs); + return this.client.createTX(this.id, options); }; /** From 4329907e8602d9dfce18f91de5163e7552b6ea84 Mon Sep 17 00:00:00 2001 From: Bucko Date: Wed, 30 Aug 2017 16:38:43 -0700 Subject: [PATCH 2/2] fixed signature as well as call --- lib/http/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/wallet.js b/lib/http/wallet.js index cb94785d..b107681b 100644 --- a/lib/http/wallet.js +++ b/lib/http/wallet.js @@ -248,7 +248,7 @@ HTTPWallet.prototype.zap = function zap(account, age) { * @see Wallet#createTX */ -HTTPWallet.prototype.createTX = function createTX(options, outputs) { +HTTPWallet.prototype.createTX = function createTX(options) { return this.client.createTX(this.id, options); };