We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2d4c1e + eff4d77 commit 2a0d2b6Copy full SHA for 2a0d2b6
bindings/ldk_node.udl
@@ -728,7 +728,7 @@ interface Bolt11Invoice {
728
u64 seconds_until_expiry();
729
boolean is_expired();
730
boolean would_expire(u64 at_time_seconds);
731
- Bolt11InvoiceDescription description();
+ Bolt11InvoiceDescription invoice_description();
732
u64 min_final_cltv_expiry_delta();
733
Network network();
734
Currency currency();
src/ffi/types.rs
@@ -985,7 +985,7 @@ impl Bolt11Invoice {
985
}
986
987
/// Return the description or a hash of it for longer ones
988
- pub fn description(&self) -> Bolt11InvoiceDescription {
+ pub fn invoice_description(&self) -> Bolt11InvoiceDescription {
989
self.inner.description().into()
990
991
0 commit comments