remove outputs from function signature

This commit is contained in:
Bucko 2017-08-30 16:36:30 -07:00
parent 7145d21c9c
commit df52cbe6f9

View File

@ -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);
};
/**