wallet: pass options into sign from send.

This commit is contained in:
Christopher Jeffrey 2016-09-29 17:35:21 -07:00
parent 52ac8da3a0
commit 839a73f404
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -1074,7 +1074,7 @@ Wallet.prototype.send = function send(options, callback) {
if (err)
return callback(err);
self.sign(tx, function(err) {
self.sign(tx, options, function(err) {
if (err)
return callback(err);