Browse Source

Add bolt11 to the invoice struct.

We store this in case an RPC client asks for it
ppa-0.6.1
Igor Cota 7 years ago
committed by Rusty Russell
parent
commit
3371168d54
  1. 2
      wallet/wallet.h

2
wallet/wallet.h

@ -388,6 +388,8 @@ struct invoice_details {
u64 msatoshi_received;
/* Set if state == PAID; time paid */
u64 paid_timestamp;
/* BOLT11 encoding for this invoice */
const char *bolt11;
};
/* An object that handles iteration over the set of invoices */

Loading…
Cancel
Save