Merge pull request #496 from troggy/leave-scripts

fix: do not remove scripts from outputs
This commit is contained in:
Ivan Socolsky 2016-04-11 09:40:00 -03:00
commit 4157e839c7
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ TxProposal.create = function(opts) {
x.payProUrl = opts.payProUrl;
x.changeAddress = opts.changeAddress;
x.outputs = _.map(opts.outputs, function(output) {
return _.pick(output, ['amount', 'toAddress', 'message']);
return _.pick(output, ['amount', 'toAddress', 'message', 'script']);
});
x.outputOrder = _.shuffle(_.range(x.outputs.length + 1));
x.walletM = opts.walletM;