|
@ -510,7 +510,7 @@ Transaction.prototype.sign = function(privateKey, sigtype) { |
|
|
var self = this; |
|
|
var self = this; |
|
|
if (_.isArray(privateKey)) { |
|
|
if (_.isArray(privateKey)) { |
|
|
_.each(privateKey, function(privateKey) { |
|
|
_.each(privateKey, function(privateKey) { |
|
|
self.sign(privateKey); |
|
|
self.sign(privateKey, sigtype); |
|
|
}); |
|
|
}); |
|
|
return this; |
|
|
return this; |
|
|
} |
|
|
} |
|
|