From 4329907e8602d9dfce18f91de5163e7552b6ea84 Mon Sep 17 00:00:00 2001 From: Bucko Date: Wed, 30 Aug 2017 16:38:43 -0700 Subject: [PATCH] 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); };