From 839a73f404042dca7af263d0bd9f5d2c6b75d901 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 29 Sep 2016 17:35:21 -0700 Subject: [PATCH] wallet: pass options into sign from send. --- lib/wallet/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/wallet.js b/lib/wallet/wallet.js index 3057893e..8b50217d 100644 --- a/lib/wallet/wallet.js +++ b/lib/wallet/wallet.js @@ -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);