From df52cbe6f9b4f625aaaeea240489fe21a92f0a19 Mon Sep 17 00:00:00 2001 From: Bucko Date: Wed, 30 Aug 2017 16:36:30 -0700 Subject: [PATCH] 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); }; /**