You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
745 B
34 lines
745 B
7 years ago
|
/**
|
||
|
* [sendPaymentSync description]
|
||
|
* @param {[type]} lnd [description]
|
||
|
* @param {[type]} paymentRequest [description]
|
||
|
* @return {[type]} [description]
|
||
|
*/
|
||
|
export function sendPaymentSync(lnd, { paymentRequest }) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
|
||
|
lnd.sendPaymentSync({ payment_request: paymentRequest }, (err, data) => {
|
||
|
if (err) { reject(err) }
|
||
|
|
||
|
resolve(data)
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* [listPayments description]
|
||
|
* @param {[type]} lnd [description]
|
||
|
* @return {[type]} [description]
|
||
|
*/
|
||
|
export function listPayments(lnd) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
|
||
|
lnd.listPayments({}, (err, data) => {
|
||
|
if (err) { reject(err) }
|
||
|
|
||
|
resolve(data)
|
||
|
})
|
||
|
})
|
||
|
}
|