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.
25 lines
684 B
25 lines
684 B
#ifndef LIGHTNING_LIGHTNINGD_INVOICE_H
|
|
#define LIGHTNING_LIGHTNINGD_INVOICE_H
|
|
#include "config.h"
|
|
#include <wire/gen_onion_wire.h>
|
|
|
|
struct amount_msat;
|
|
struct htlc_in;
|
|
struct lightningd;
|
|
struct sha256;
|
|
|
|
/**
|
|
* invoice_try_pay - process payment for this payment_hash, amount msat.
|
|
* @ld: lightningd
|
|
* @hin: the input HTLC which is offering to pay.
|
|
* @payment_hash: hash of preimage they want.
|
|
* @msat: amount they offer to pay.
|
|
*
|
|
* Either calls fulfill_htlc() or fail_htlcs().
|
|
*/
|
|
void invoice_try_pay(struct lightningd *ld,
|
|
struct htlc_in *hin,
|
|
const struct sha256 *payment_hash,
|
|
const struct amount_msat msat);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_INVOICE_H */
|
|
|