Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/ldk_node.udl
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ interface Bolt11Invoice {
u64 seconds_until_expiry();
boolean is_expired();
boolean would_expire(u64 at_time_seconds);
Bolt11InvoiceDescription description();
Bolt11InvoiceDescription invoice_description();
u64 min_final_cltv_expiry_delta();
Network network();
Currency currency();
Expand Down
2 changes: 1 addition & 1 deletion src/uniffi_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ impl Bolt11Invoice {
}

/// Return the description or a hash of it for longer ones
pub fn description(&self) -> Bolt11InvoiceDescription {
pub fn invoice_description(&self) -> Bolt11InvoiceDescription {
self.inner.description().into()
}

Expand Down
Loading