File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 50
50
* nostr: add ` UnsignedEvent::ensure_id ` method ([ Yuki Kishimoto] )
51
51
* nostr: add missing ` payload ` arg to ` EventBuilder::job_result ` ([ Yuki Kishimoto] )
52
52
* nostr: add ` ConversationKey::new ` ([ Yuki Kishimoto] )
53
+ * nostr: add ` Request::multi_pay_invoice ` constructor ([ Yuki Kishimoto] )
53
54
* pool: add ` RelayPoolNotification::Authenticated ` variant ([ Yuki Kishimoto] )
54
55
* sdk: add ` Client::gift_wrap_to ` and ` Client::send_private_msg_to ` ([ reyamir] )
55
56
* sdk: add option to autoconnect relay on ` Client::add_relay ` method call ([ Yuki Kishimoto] )
Original file line number Diff line number Diff line change @@ -409,6 +409,15 @@ impl Request {
409
409
}
410
410
}
411
411
412
+ /// Compose `multi_pay_invoice` request
413
+ #[ inline]
414
+ pub fn multi_pay_invoice ( params : MultiPayInvoiceRequestParams ) -> Self {
415
+ Self {
416
+ method : Method :: MultiPayInvoice ,
417
+ params : RequestParams :: MultiPayInvoice ( params) ,
418
+ }
419
+ }
420
+
412
421
/// Compose `pay_keysend` request
413
422
#[ inline]
414
423
pub fn pay_keysend ( params : PayKeysendRequestParams ) -> Self {
You can’t perform that action at this time.
0 commit comments