Adds order Id
This commit is contained in:
parent
a214211c8c
commit
5fe96476bf
1 changed files with 2 additions and 1 deletions
|
|
@ -159,7 +159,8 @@ angular.module('copayApp.services').factory('amazonService', function($http, $lo
|
||||||
root.createBitPayInvoice = function(data, cb) {
|
root.createBitPayInvoice = function(data, cb) {
|
||||||
var data = {
|
var data = {
|
||||||
price: data.price,
|
price: data.price,
|
||||||
currency: data.currency
|
currency: data.currency,
|
||||||
|
orderId: data.orderId
|
||||||
};
|
};
|
||||||
_checkLimit(data.price, function(err) {
|
_checkLimit(data.price, function(err) {
|
||||||
if (err) return cb(err);
|
if (err) return cb(err);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue