Merge pull request #308 from Bucko13/createTX-signature

remove outputs from function signature
This commit is contained in:
Christopher Jeffrey (JJ) 2017-10-18 13:20:53 -07:00 committed by GitHub
commit 8883da8a7d

View File

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