paypro: fix script buffers.
This commit is contained in:
parent
cf674dced2
commit
959a2f40cb
1 changed files with 2 additions and 1 deletions
|
|
@ -914,7 +914,8 @@ Wallet.prototype.receivePaymentRequest = function(options, pr, cb) {
|
||||||
script: {
|
script: {
|
||||||
offset: output.get('script').offset,
|
offset: output.get('script').offset,
|
||||||
limit: output.get('script').limit,
|
limit: output.get('script').limit,
|
||||||
buffer: new Buffer(output.get('script').buffer).toString('hex')
|
buffer: new Buffer(new Uint8Array(
|
||||||
|
output.get('script').buffer)).toString('hex')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue