paypro: example - sign customer transaction after output scripts are altered.

This commit is contained in:
Christopher Jeffrey 2014-08-19 19:37:10 -07:00
parent 095699a072
commit 471378b0d8
1 changed files with 3 additions and 2 deletions

View File

@ -382,8 +382,7 @@ function createTX(outputs) {
var b = new bitcore.TransactionBuilder(opts) var b = new bitcore.TransactionBuilder(opts)
.setUnspent(unspent) .setUnspent(unspent)
.setOutputs(outs) .setOutputs(outs);
.sign(keys);
outputs.forEach(function(output, i) { outputs.forEach(function(output, i) {
var script = { var script = {
@ -396,6 +395,8 @@ function createTX(outputs) {
b.tx.outs[i].s = s; b.tx.outs[i].s = s;
}); });
b = b.sign(keys);
var tx = b.build(); var tx = b.build();
print(''); print('');