@@ -125,13 +125,13 @@ pub struct RejectActionBillPayload {
125
125
#[ derive( Tsify , Debug , Clone , Serialize ) ]
126
126
#[ tsify( into_wasm_abi) ]
127
127
pub struct BillCombinedBitcoinKeyWeb {
128
- pub private_key : String ,
128
+ pub private_descriptor : String ,
129
129
}
130
130
131
131
impl From < BillCombinedBitcoinKey > for BillCombinedBitcoinKeyWeb {
132
132
fn from ( val : BillCombinedBitcoinKey ) -> Self {
133
133
BillCombinedBitcoinKeyWeb {
134
- private_key : val. private_key ,
134
+ private_descriptor : val. private_descriptor ,
135
135
}
136
136
}
137
137
}
@@ -310,7 +310,7 @@ pub struct PastPaymentDataSellWeb {
310
310
pub sum : String ,
311
311
pub link_to_pay : String ,
312
312
pub address_to_pay : String ,
313
- pub private_key_to_spend : String ,
313
+ pub private_descriptor_to_spend : String ,
314
314
pub mempool_link_for_address_to_pay : String ,
315
315
pub status : PastPaymentStatusWeb ,
316
316
}
@@ -325,7 +325,7 @@ impl From<PastPaymentDataSell> for PastPaymentDataSellWeb {
325
325
sum : val. sum ,
326
326
link_to_pay : val. link_to_pay ,
327
327
address_to_pay : val. address_to_pay ,
328
- private_key_to_spend : val. private_key_to_spend ,
328
+ private_descriptor_to_spend : val. private_descriptor_to_spend ,
329
329
mempool_link_for_address_to_pay : val. mempool_link_for_address_to_pay ,
330
330
status : val. status . into ( ) ,
331
331
}
@@ -342,7 +342,7 @@ pub struct PastPaymentDataPaymentWeb {
342
342
pub sum : String ,
343
343
pub link_to_pay : String ,
344
344
pub address_to_pay : String ,
345
- pub private_key_to_spend : String ,
345
+ pub private_descriptor_to_spend : String ,
346
346
pub mempool_link_for_address_to_pay : String ,
347
347
pub status : PastPaymentStatusWeb ,
348
348
}
@@ -356,7 +356,7 @@ impl From<PastPaymentDataPayment> for PastPaymentDataPaymentWeb {
356
356
sum : val. sum ,
357
357
link_to_pay : val. link_to_pay ,
358
358
address_to_pay : val. address_to_pay ,
359
- private_key_to_spend : val. private_key_to_spend ,
359
+ private_descriptor_to_spend : val. private_descriptor_to_spend ,
360
360
mempool_link_for_address_to_pay : val. mempool_link_for_address_to_pay ,
361
361
status : val. status . into ( ) ,
362
362
}
@@ -373,7 +373,7 @@ pub struct PastPaymentDataRecourseWeb {
373
373
pub sum : String ,
374
374
pub link_to_pay : String ,
375
375
pub address_to_pay : String ,
376
- pub private_key_to_spend : String ,
376
+ pub private_descriptor_to_spend : String ,
377
377
pub mempool_link_for_address_to_pay : String ,
378
378
pub status : PastPaymentStatusWeb ,
379
379
}
@@ -388,7 +388,7 @@ impl From<PastPaymentDataRecourse> for PastPaymentDataRecourseWeb {
388
388
sum : val. sum ,
389
389
link_to_pay : val. link_to_pay ,
390
390
address_to_pay : val. address_to_pay ,
391
- private_key_to_spend : val. private_key_to_spend ,
391
+ private_descriptor_to_spend : val. private_descriptor_to_spend ,
392
392
mempool_link_for_address_to_pay : val. mempool_link_for_address_to_pay ,
393
393
status : val. status . into ( ) ,
394
394
}
0 commit comments